for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Cycle\ORM\Command\Traits;
/**
* Describes why command has been locked up
*
* @internal
*/
trait ErrorTrait
{
public function __toError()
$missing = [];
if (\property_exists($this, 'waitScope')) {
foreach ($this->waitScope ?? [] as $name => $n) {
$missing[] = "scope:{$name}";
}
if (\property_exists($this, 'waitContext')) {
foreach ($this->waitContext ?? [] as $name => $n) {
$missing[] = "{$name}";
return \sprintf('%s(%s)', $this::class, \implode(', ', $missing));