for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\PHPSA\Compiler\Expression\Operators\Comparison;
use PhpParser\Node;
use PHPSA\CompiledExpression;
use PHPSA\Compiler\Expression;
use Tests\PHPSA\Compiler\Expression\AbstractBinaryOp;
abstract class BaseTestCase extends AbstractBinaryOp
{
/**
* @return array
*/
protected function getSupportedTypes()
return [
CompiledExpression::INTEGER,
CompiledExpression::DOUBLE,
CompiledExpression::STRING,
CompiledExpression::BOOLEAN,
CompiledExpression::NULL,
];
}