This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace MyVendor\ImageBundle\Admin; | |
| use Sonata\AdminBundle\Admin\Admin, | |
| Sonata\AdminBundle\Datagrid\ListMapper, | |
| Sonata\AdminBundle\Datagrid\DatagridMapper, | |
| Sonata\AdminBundle\Validator\ErrorElement, | |
| Sonata\AdminBundle\Form\FormMapper, | |
| Sonata\AdminBundle\Show\ShowMapper, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace MyVendor\BranchBundle\Admin; | |
| use Sonata\AdminBundle\Admin\Admin; | |
| use Sonata\AdminBundle\Datagrid\ListMapper; | |
| use Sonata\AdminBundle\Datagrid\DatagridMapper; | |
| use Sonata\AdminBundle\Validator\ErrorElement; | |
| use Sonata\AdminBundle\Form\FormMapper; | |
| use Symfony\Component\DependencyInjection\ContainerInterface; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace MyVendor\ImageBundle\Entity; | |
| use Doctrine\ORM\Mapping as ORM, | |
| Doctrine\Common\Collections\ArrayCollection, | |
| Symfony\Component\HttpFoundation\File\File, | |
| Symfony\Component\Validator\Constraints as Assert, | |
| Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity, | |
| Vich\UploaderBundle\Mapping\Annotation as Vich; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace MyVendor\ImageBundle\Entity; | |
| use Doctrine\ORM\Mapping as ORM, | |
| Vich\UploaderBundle\Mapping\Annotation as Vich; | |
| /** | |
| * @ORM\Entity | |
| * @Vich\Uploadable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace MyVendor\BranchBundle\Entity; | |
| use Doctrine\ORM\Mapping as ORM, | |
| Doctrine\Common\Collections\ArrayCollection, | |
| MyVendor\CommonBundle\Entity\ActivityCategory, | |
| MyVendor\CommonBundle\Entity\Location, | |
| Symfony\Component\Validator\Constraints as Assert, | |
| Symfony\Component\Validator\ExecutionContext, |