Completed
Push — master ( c48e94...0f8b60 )
by Zbigniew
02:47
created
src/SerializerFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     {
28 28
         AnnotationRegistry::registerAutoloadNamespace(
29 29
             'JMS\Serializer\Annotation',
30
-            __DIR__.'/../vendor/jms/serializer/src'
30
+            __DIR__ . '/../vendor/jms/serializer/src'
31 31
         );
32 32
 
33 33
         return SerializerBuilder::create()->build();
Please login to merge, or discard this patch.
src/Model/Common/SubscriptionModel.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
     protected $userLimit;
54 54
 
55 55
     /**
56
-     * @return mixed
56
+     * @return string|null
57 57
      */
58 58
     public function getType()
59 59
     {
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
     }
74 74
 
75 75
     /**
76
-     * @return mixed
76
+     * @return boolean|null
77 77
      */
78 78
     public function getPaid()
79 79
     {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     }
94 94
 
95 95
     /**
96
-     * @return mixed
96
+     * @return integer|null
97 97
      */
98 98
     public function getUserLimit()
99 99
     {
Please login to merge, or discard this patch.
src/Model/CustomField/CustomFieldResourceModel.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     protected $deleted;
89 89
 
90 90
     /**
91
-     * @return mixed
91
+     * @return string|null
92 92
      */
93 93
     public function getId()
94 94
     {
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
     }
109 109
 
110 110
     /**
111
-     * @return mixed
111
+     * @return string|null
112 112
      */
113 113
     public function getAccountId()
114 114
     {
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     }
129 129
 
130 130
     /**
131
-     * @return mixed
131
+     * @return string|null
132 132
      */
133 133
     public function getTitle()
134 134
     {
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
     }
149 149
 
150 150
     /**
151
-     * @return mixed
151
+     * @return string|null
152 152
      */
153 153
     public function getType()
154 154
     {
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
     }
189 189
 
190 190
     /**
191
-     * @return mixed
191
+     * @return boolean|null
192 192
      */
193 193
     public function getDeleted()
194 194
     {
Please login to merge, or discard this patch.