for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Arcanesoft\Backups\Http\Routes;
use Arcanesoft\Foundation\Support\Http\AdminRouteRegistrar;
use Closure;
/**
* Class AbstractRouteRegistrar
*
* @package Arcanesoft\Backups\Http\Routes
* @author ARCANEDEV <[email protected]>
*/
abstract class AbstractRouteRegistrar extends AdminRouteRegistrar
{
/* -----------------------------------------------------------------
| Main Methods
| -----------------------------------------------------------------
* Group routes under a module stack.
* @param \Closure $callback
protected function moduleGroup(Closure $callback): void
$this->prefix('backups')
prefix()
Arcanesoft\Backups\Http\...\AbstractRouteRegistrar
getAdminPrefix()
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.
->name('backups.')
->group($callback);
}
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.