import axiom without dependency on symfony console
Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit

This commit is contained in:
2020-06-21 07:36:31 -04:00
parent 348d17cdd3
commit fb619dccbf
27 changed files with 2608 additions and 829 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace Enzyme\Axiom\Exceptions;
class AtomException extends AxiomException
{
public function __construct($class, $value)
{
parent::__construct(
"The atom [{$class}] could not process the value [{$value}]."
);
}
}

View File

@@ -0,0 +1,10 @@
<?php
namespace Enzyme\Axiom\Exceptions;
use Exception;
class AxiomException extends Exception
{
//
}