Some checks failed
abc-api/abcParser/pipeline/head There was a failure building this commit
14 lines
201 B
PHP
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();
|
|
}
|