Created
October 12, 2016 09:02
-
-
Save adammbalogh/11330284f80ce6b75202b63fe0b32e7a to your computer and use it in GitHub Desktop.
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 | |
$project = new Project('project'); | |
$project->getTaskCollection()->add('a'); | |
$project->getTaskCollection()->add('b'); | |
$project->getTaskCollection()->add('c'); | |
foreach ($project->getTaskCollection() as $task) { | |
echo $task->getName(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment