Files
abcParser/axiom_src/Atoms/AtomInterface.php
richard fb619dccbf
Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit
import axiom without dependency on symfony console
2020-06-21 07:36:31 -04:00

14 lines
201 B
PHP

<?php
namespace Enzyme\Axiom\Atoms;
interface AtomInterface
{
/**
* Get the underlying value associated with this atom.
*
* @return mixed
*/
public function getValue();
}