| Total Complexity | 5 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Settings extends Component |
||
| 11 | { |
||
| 12 | use LivewireAlert; |
||
| 13 | |||
| 14 | public $site_url = ''; |
||
| 15 | public $username = ''; |
||
| 16 | public $password = ''; |
||
| 17 | |||
| 18 | public function mount() |
||
| 23 | } |
||
| 24 | |||
| 25 | public function render() |
||
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var array |
||
| 32 | */ |
||
| 33 | private function resetInputFields() |
||
| 36 | } |
||
| 37 | |||
| 38 | public function update() |
||
| 55 |
This check looks for private methods that have been defined, but are not used inside the class.