Skip to content

Instantly share code, notes, and snippets.

@adammbalogh
Created October 12, 2016 09:02
Show Gist options
  • Save adammbalogh/11330284f80ce6b75202b63fe0b32e7a to your computer and use it in GitHub Desktop.
Save adammbalogh/11330284f80ce6b75202b63fe0b32e7a to your computer and use it in GitHub Desktop.
<?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