for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Isswp101\Persimmon\Concerns;
trait Existable
{
private bool $exists = false;
public function exists(): bool
return $this->exists;
}