Fix code quality with rector [skip ci]

This commit is contained in:
James Cole
2025-11-09 09:07:14 +01:00
parent 38691d6fdf
commit d2610be790
262 changed files with 873 additions and 1186 deletions

View File

@@ -34,27 +34,20 @@ use Illuminate\Routing\Route;
*/
class Binder
{
/**
* The authentication factory instance.
*
* @var Auth
*/
protected $auth;
/**
* The binders.
*
* @var array
*/
protected $binders = [];
protected array $binders;
/**
* Binder constructor.
*/
public function __construct(Auth $auth)
public function __construct(/**
* The authentication factory instance.
*/
protected Auth $auth)
{
$this->binders = Domain::getBindables();
$this->auth = $auth;
}
/**