finished default parser

This commit is contained in:
2018-04-24 21:11:23 -04:00
parent 8a1c752045
commit 3817394951
39 changed files with 3725 additions and 328 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace XaiCorp\AbcParser\Domain\Core;
use Enzyme\Collection\Collection;
class TuneCollection extends Collection
{
/**
* Get the value of the first element in this collection.
*
* @throws \Enzyme\Collection\CollectionException If the collection is empty.
*
* @return \XaiCorp\AbcParser\Domain\Core\Tune
*/
public function first()
{
return parent::first();
}
}