for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Larapie\Actions\Concerns;
trait ResolveIncludes
{
public function includes()
return [];
}
protected function resolveIncludes()
$this->resolveAttributeIncludes();
protected function resolveAttributeIncludes()
$this->fill($this->includes());
fill()
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 */
fill($this->includes());