GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Branch development (1ea943)
by butschster
05:38
created

DisplayColumnEditableFactory   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 1
1
<?php
2
3
namespace SleepingOwl\Admin\Factories;
4
5
use SleepingOwl\Admin\AliasBinder;
6
use SleepingOwl\Admin\Display\Column\Editable\Checkbox;
7
use SleepingOwl\Admin\Contracts\Display\DisplayColumnEditableFactoryInterface;
8
9
/**
10
 * @method Checkbox checkbox($name)
11
 */
12
class DisplayColumnEditableFactory extends AliasBinder implements DisplayColumnEditableFactoryInterface
13
{
14
    /**
15
     * DisplayColumnEditableFactory constructor.
16
     *
17
     * @param \Illuminate\Contracts\Foundation\Application $application
18
     */
19
    public function __construct(\Illuminate\Contracts\Foundation\Application $application)
20
    {
21
        parent::__construct($application);
22
23
        $this->register([
24
            'checkbox' => Checkbox::class,
25
        ]);
26
    }
27
}
28