for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Actions\User;
use App\Lib\Slime\RestAction\ApiAction;
use App\Lib\Slime\RestAction\Traits\Pagination;
use App\Models\Users\User;
class UserGetAll extends ApiAction
{
use Pagination;
protected function performAction()
$this->pagination = $this->getPaginationParams($this->request);
$this->payload = User::filter(
filter()
App\Models\Users\User
filterModelEventResults()
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.
$this->getQueryParams()
)->page(
$this->pagination
)->get();
}
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.