for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Repositories;
use App\Currency;
class CurrenciesRepository extends Repository
{
/**
* @return Currency
*/
public function getModel()
return new Currency();
}
* @return mixed
public function getPublic()
return self::getModel()
active()
App\Currency
scopeActive()
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.
->active()
->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.