mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-03 20:14:31 +00:00
Fix code quality with rector [skip ci]
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user