for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helldar\LaravelLangPublisher\Traits\Processors;
use Helldar\LaravelLangPublisher\Constants\Status;
trait Deletable
{
public function run(): array
// $this->checkExists($this->targetPath());
$this->delete()
delete()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$this->/** @scrutinizer ignore-call */
? $this->push('*', Status::DELETED)
push()
? $this->/** @scrutinizer ignore-call */ push('*', Status::DELETED)
: $this->push('*', Status::SKIPPED);
return $this->result();
result()
return $this->/** @scrutinizer ignore-call */ result();
}