Completed
Push — master ( 191531...ff3871 )
by
unknown
01:26
created
src/NotifierServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 	/**
36 36
 	 * Get the services provided by the provider.
37 37
 	 *
38
-	 * @return array
38
+	 * @return string[]
39 39
 	 */
40 40
 	public function provides()
41 41
 	{
Please login to merge, or discard this patch.
src/Notifier.php 1 patch
Doc Comments   -11 removed lines patch added patch discarded remove patch
@@ -83,8 +83,6 @@  discard block
 block discarded – undo
83 83
      *
84 84
      * @param string $type Could be error, info, success, or warning.
85 85
      * @param string $text The notification's message
86
-     * @param string $title The notification's title
87
-     * @param array $options
88 86
      * @param bool $onlyNextRequest if true(default), se the notification in session only for the next request
89 87
      *
90 88
      */
@@ -125,8 +123,6 @@  discard block
 block discarded – undo
125 123
     /**
126 124
      * Shortcut for adding an info notification
127 125
      *
128
-     * @param string $message The notification's message
129
-     * @param string $title The notification's title
130 126
      * @param array $options
131 127
      */
132 128
     public function info($text, $onlyNextRequest = true, array $options = [])
@@ -141,8 +137,6 @@  discard block
 block discarded – undo
141 137
     /**
142 138
      * Shortcut for adding an error notification
143 139
      *
144
-     * @param string $message The notification's message
145
-     * @param string $title The notification's title
146 140
      * @param array $options
147 141
      */
148 142
     public function error($text, $onlyNextRequest = true, array $options = [])
@@ -157,8 +151,6 @@  discard block
 block discarded – undo
157 151
     /**
158 152
      * Shortcut for adding a warning notification
159 153
      *
160
-     * @param string $message The notification's message
161
-     * @param string $title The notification's title
162 154
      * @param array $options
163 155
      */
164 156
     public function warning($text, $onlyNextRequest = true, array $options = [])
@@ -173,8 +165,6 @@  discard block
 block discarded – undo
173 165
     /**
174 166
      * Shortcut for adding a success notification
175 167
      *
176
-     * @param string $message The notification's message
177
-     * @param string $title The notification's title
178 168
      * @param array $options
179 169
      */
180 170
     public function success($text, $onlyNextRequest = true, array $options = [])
@@ -190,7 +180,6 @@  discard block
 block discarded – undo
190 180
     /**
191 181
      * Clear all notifications
192 182
      *
193
-     * @param bool $withSession if true (default) clean notifications in session too.
194 183
      */
195 184
     public function clear()
196 185
     {
Please login to merge, or discard this patch.