When creating proxy classes, we do not copy the docblock, but generate one, using the parsed annotations of the original class. Thus we need to render them out to string form. This is what we currently use for that purpose...
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 | |
// Create a simple workflow based on the predefined 'SimpleWorkflow'. | |
$workflow = new \TYPO3\Surf\Domain\Model\SimpleWorkflow(); | |
// Define a custom task for smoketesting based on the 'httptest' task. | |
// Be sure, that the document root of next.example.org points to | |
// '[deploymentPath]/releases/next' | |
$smokeTestOptions = array( | |
'url' => 'http://next.example.org', |
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 | |
/** | |
* Please be aware that private properties are private for good purpose, | |
* changing it during runtime so is only OK during Unit Testing for example. | |
* So use this only if you're knowing what you're doing :) | |
*/ | |
class BareDemoClass() { |
NewerOlder