We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| @@ 62-70 (lines=9) @@ | ||
| 59 | ]); |
|
| 60 | } |
|
| 61 | ||
| 62 | private function about_us() |
|
| 63 | { |
|
| 64 | $this->crud->addField([ |
|
| 65 | 'name' => 'content', |
|
| 66 | 'label' => trans('backpack::pagemanager.content'), |
|
| 67 | 'type' => 'wysiwyg', |
|
| 68 | 'placeholder' => trans('backpack::pagemanager.content_placeholder'), |
|
| 69 | ]); |
|
| 70 | } |
|
| 71 | } |
|
| 72 | ||
| @@ 7-15 (lines=9) @@ | ||
| 4 | ||
| 5 | trait UniquePages |
|
| 6 | { |
|
| 7 | private function about_us() |
|
| 8 | { |
|
| 9 | $this->crud->addField([ |
|
| 10 | 'name' => 'content', |
|
| 11 | 'label' => trans('backpack::pagemanager.content'), |
|
| 12 | 'type' => 'wysiwyg', |
|
| 13 | 'placeholder' => trans('backpack::pagemanager.content_placeholder'), |
|
| 14 | ]); |
|
| 15 | } |
|
| 16 | ||
| 17 | private function some_thing() |
|
| 18 | { |
|
| @@ 17-25 (lines=9) @@ | ||
| 14 | ]); |
|
| 15 | } |
|
| 16 | ||
| 17 | private function some_thing() |
|
| 18 | { |
|
| 19 | $this->crud->addField([ |
|
| 20 | 'name' => 'content', |
|
| 21 | 'label' => trans('backpack::pagemanager.content'), |
|
| 22 | 'type' => 'simplemde', |
|
| 23 | 'placeholder' => trans('backpack::pagemanager.content_placeholder'), |
|
| 24 | ]); |
|
| 25 | } |
|
| 26 | } |
|
| 27 | ||