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 master (8b034b)
by Gabriel
05:26
created
src/application/Models/Fields/Traits/FormFieldsTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     }
31 31
 
32 32
     /**
33
-     * @param AbstractTypeTrait $object
33
+     * @param \ByTIC\Common\Records\Properties\Types\Generic $object
34 34
      */
35 35
     public function addType($object)
36 36
     {
Please login to merge, or discard this patch.
src/application/Models/Fields/Traits/FormFieldTrait.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
 trait FormFieldTrait
22 22
 {
23 23
     /**
24
-     * @param $form
25
-     * @return mixed
24
+     * @param \ByTIC\FormBuilder\Application\Modules\AbstractModule\Forms\Traits\DynamicFormTrait $form
25
+     * @return \Nip_Form_Element_Abstract
26 26
      */
27 27
     public function addFormInput($form)
28 28
     {
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     abstract public function getType();
36 36
 
37 37
     /**
38
-     * @param $form
38
+     * @param \ByTIC\FormBuilder\Application\Modules\AbstractModule\Forms\Traits\DynamicFormTrait $form
39 39
      * @return void
40 40
      */
41 41
     public function processValidation($form)
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * @param $form
91 91
      * @param $siblingForm
92
-     * @return mixed
92
+     * @return AbstractTypeTrait
93 93
      */
94 94
     public function populateFormFromSibling($form, $siblingForm)
95 95
     {
Please login to merge, or discard this patch.
src/application/Models/Fields/Types/Traits/AbstractTypeTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     /**
77 77
      * @param FormElement $input
78
-     * @return mixed
78
+     * @return FormElement
79 79
      */
80 80
     public function initFormInput($input)
81 81
     {
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
     }
124 124
 
125 125
     /**
126
-     * @param DynamicFormTrait|Form $form
126
+     * @param Form $form
127 127
      * @return \Nip\Records\Record
128 128
      */
129 129
     protected function getModelFromForm($form)
Please login to merge, or discard this patch.
Models/Fields/Types/Traits/CustomElements/AbstractCustomElementTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 
19 19
     /**
20 20
      * @param FormElement $input
21
-     * @return mixed
21
+     * @return FormElement
22 22
      */
23 23
     public function initFormInput($input)
24 24
     {
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     }
81 81
 
82 82
     /**
83
-     * @param $model
83
+     * @param ModelWithFieldsRecordTrait $model
84 84
      * @return ModelFieldsRecordTrait
85 85
      */
86 86
     protected function generateModelField($model)
Please login to merge, or discard this patch.