| Total Complexity | 5 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class EditAccount extends Component |
||
| 10 | { |
||
| 11 | public $name; |
||
| 12 | public $email; |
||
| 13 | public $password; |
||
| 14 | public $password_confirmation; |
||
| 15 | public $user; |
||
| 16 | |||
| 17 | public function mount(User $user) |
||
| 18 | { |
||
| 19 | $this->user = $user; |
||
| 20 | $this->name = $user->name; |
||
| 21 | $this->email = $user->email; |
||
| 22 | } |
||
| 23 | |||
| 24 | private function resetInputFields() |
||
| 29 | } |
||
| 30 | |||
| 31 | public function submit() |
||
| 53 | } |
||
| 54 | |||
| 55 | public function render() |
||
| 58 | } |
||
| 59 | } |
||
| 60 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths