Skip to content

Instantly share code, notes, and snippets.

<?php
// ...
class AbstractInvoiceLineType extends AbstractType
{
public function buildForm(FormBuilderInterface $builder, array $options)
{
// ...
<?php
class OptionA
{
/**
* @var \DateTime $date
*/
private $date;
// the $date in the docblock seems redundant?
}