finished default parser
This commit is contained in:
19
src/Domain/Core/TuneCollection.php
Normal file
19
src/Domain/Core/TuneCollection.php
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user