for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace PersonalGalaxy\Files\Specification;
use Innmind\Specification\{
ComparatorInterface,
CompositeInterface,
SpecificationInterface,
NotInterface,
};
final class Trashed implements ComparatorInterface
{
/**
* {@inheritdoc}
*/
public function property(): string
return 'trashed';
}
public function sign(): string
return '=';
public function value()
return true;
public function and(SpecificationInterface $specification): CompositeInterface
//not implemented
public function or(SpecificationInterface $specification): CompositeInterface
public function not(): NotInterface