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 | |
| /** | |
| * @author Pascal Muenst <[email protected]> | |
| * @copyright Copyright (c) 2015, TiMESPLiNTER Webdevelopment | |
| */ | |
| class DoctrineHelper | |
| { | |
| /** | |
| * @param EntityManager $entityManager The used entity manager instance |
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
| #!/usr/bin/env php | |
| <?php | |
| $people = [ | |
| 'b2b' => [ | |
| 'Dominik', | |
| 'Thomas', | |
| 'Henrik', | |
| ], | |
| 'b2c' => [ |
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 MudObjectCreator; | |
| use JMS\Serializer\SerializerInterface; | |
| use PhpParser\Error; | |
| use PhpParser\NodeTraverser; | |
| use PhpParser\ParserFactory; | |
| use PhpParser\PrettyPrinter\Standard; | |
| use Symfony\Component\Validator\Validator\ValidatorInterface; |