This commit is contained in:
2022-04-14 00:11:15 +02:00
parent 31731c6f44
commit e6d59bc837
2 changed files with 11 additions and 4 deletions

View File

@@ -1,5 +1,14 @@
<?php
/**
* Chill is a software for social workers
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
declare(strict_types=1);
namespace Chill\MainBundle\Form\Type;
use Chill\MainBundle\Entity\Address;
@@ -25,5 +34,4 @@ class AddressDateType extends AbstractType
{
$resolver->setDefault('data_class', Address::class);
}
}