Completed
Push — master ( e5d792...e93008 )
by Dan
01:50
created
src/Message/MessageFactory.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -130,6 +130,9 @@  discard block
 block discarded – undo
130 130
         return $readable ? $readable : $entity;
131 131
     }
132 132
 
133
+    /**
134
+     * @param string $readable
135
+     */
133 136
     public function formatUser(string $entity, $readable = null) : string
134 137
     {
135 138
         if ($readable) {
@@ -144,6 +147,9 @@  discard block
 block discarded – undo
144 147
         return $entity;
145 148
     }
146 149
 
150
+    /**
151
+     * @param string $readable
152
+     */
147 153
     public function formatChannel(string $entity, $readable = null) : string
148 154
     {
149 155
         if ($readable) {
@@ -158,6 +164,9 @@  discard block
 block discarded – undo
158 164
         return $entity;
159 165
     }
160 166
 
167
+    /**
168
+     * @param string $param
169
+     */
161 170
     protected function isMessageChanged(array $data, $param = null): bool
162 171
     {
163 172
         return isset($data['subtype'])
Please login to merge, or discard this patch.