Completed
Push — master ( 7f340c...a0843d )
by Mathieu
08:01
created
src/Suricate/Page.php 1 patch
Doc Comments   +7 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,6 +17,9 @@  discard block
 block discarded – undo
17 17
 
18 18
     }
19 19
 
20
+    /**
21
+     * @param string $language
22
+     */
20 23
     public function setLanguage($language)
21 24
     {
22 25
         $this->language = $language;
@@ -24,6 +27,9 @@  discard block
 block discarded – undo
24 27
         return $this;
25 28
     }
26 29
 
30
+    /**
31
+     * @param string $encoding
32
+     */
27 33
     public function setEncoding($encoding)
28 34
     {
29 35
         $this->encoding = $encoding;
@@ -44,9 +50,9 @@  discard block
 block discarded – undo
44 50
     
45 51
     /**
46 52
      * Add a stylesheet
47
-     * @param string $id  Unique stylesheet identifier
48 53
      * @param string $url Stylesheet URL
49 54
      * @param string $media Stylesheet media (default: all)
55
+     * @param string $identifier
50 56
      */
51 57
     public function addStylesheet($identifier, $url, $media = 'all')
52 58
     {
Please login to merge, or discard this patch.