applying enhancement to use single dd function

This commit is contained in:
AJ Meireles
2023-07-17 19:11:06 -03:00
parent 8abc0d1920
commit b00bc4d5ea

View File

@ -130,13 +130,7 @@ final class Expectation
return; return;
} }
if (function_exists('dd')) { $this->dd($this->value, ...$arguments);
dd($this->value, ...$arguments);
}
var_dump($this->value);
exit(1);
} }
/** /**