This file contains 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
resources: | |
methods: | |
Acme_Foo_Controller: 'method(Acme\Foo\Controller\BarController->.*Action())' | |
acls: | |
Everybody: | |
methods: | |
Acme_Foo_Controller: GRANT |
This file contains 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
# # | |
# Routes configuration # | |
# # | |
# This file contains the configuration for the MVC router. # | |
# Just add your own modifications as necessary. # | |
# # | |
# Please refer to the Flow manual for possible configuration options. # | |
# # | |
## |
This file contains 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 | |
/* * | |
* This script belongs to the TYPO3 Flow framework. * | |
* * | |
* It is free software; you can redistribute it and/or modify it under * | |
* the terms of the GNU Lesser General Public License, either version 3 * | |
* of the License, or (at your option) any later version. * | |
* * | |
* The TYPO3 project - inspiring people to share! * | |
* */ |
This file contains 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 BLEICKER\ArtManager\Structure\Property\TypeConverter; | |
/* * | |
* This script belongs to the TYPO3 Flow framework. * | |
* * | |
* It is free software; you can redistribute it and/or modify it under * | |
* the terms of the GNU Lesser General Public License, either version 3 * | |
* of the License, or (at your option) any later version. * | |
* * |
This file contains 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
BLEICKER\ArtManager\Rest\Tests\Functional\Resource\ResourceManager: | |
properties: | |
statusCache: | |
object: | |
factoryObjectName: TYPO3\Flow\Cache\CacheManager | |
factoryMethodName: getCache | |
arguments: | |
1: | |
value: Flow_Resource_Status |
This file contains 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 | |
/* * | |
* This script belongs to the TYPO3 Flow package "BLEICKER.ArtManager.Structure". * | |
* * | |
* */ | |
namespace BLEICKER\ArtManager\Structure\Tests\Functional\Domain\Model; | |
use BLEICKER\ArtManager\Structure\Domain\Model\Artist; | |
use BLEICKER\ArtManager\Structure\Domain\Model\Company; |
This file contains 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 | |
/* * | |
* This script belongs to the TYPO3 Flow package "BLEICKER.ArtManager.Structure". * | |
* * | |
* */ | |
namespace BLEICKER\ArtManager\Structure\Domain\Model; | |
use TYPO3\Flow\Annotations as Flow; | |
use Doctrine\ORM\Mapping as ORM; |
This file contains 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 | |
/* * | |
* This script belongs to the TYPO3 Flow package "BLEICKER.ArtManager.Structure". * | |
* * | |
* */ | |
namespace BLEICKER\ArtManager\Structure\Domain\Model; | |
use TYPO3\Flow\Annotations as Flow; | |
use Doctrine\ORM\Mapping as ORM; |
This file contains 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 Some\Package\Domain\Model; | |
use TYPO3\Flow\Annotations as Flow; | |
use Doctrine\ORM\Mapping as ORM; | |
use TYPO3\Flow\Security\Policy\Role; | |
use TYPO3\Party\Domain\Model\AbstractParty; | |
/** | |
* A User |
This file contains 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
class FooRepository extends Repository { | |
/** | |
* @return QueryResultInterface | |
*/ | |
public function findAllWhereSenderEqualsRecipient() { | |
$query = $this->createQuery(); | |
/** |