Completed
Push — master ( 388f01...ca2fa9 )
by Jake
06:45
created
src/Contracts/Favicons.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,6 +6,7 @@  discard block
 block discarded – undo
6 6
 {
7 7
     /**
8 8
      * Configure default settings.
9
+     * @return void
9 10
      */
10 11
     public function __construct();
11 12
     
@@ -13,6 +14,7 @@  discard block
 block discarded – undo
13 14
      * Sets the favicons directory.
14 15
      *
15 16
      * @param string $url
17
+     * @return \Pyncil\SEO\Favicons
16 18
      */
17 19
     public function set($url = '/');
18 20
     
@@ -20,6 +22,7 @@  discard block
 block discarded – undo
20 22
      * Set colors for certain favicons.
21 23
      *
22 24
      * @param array $colors
25
+     * @return \Pyncil\SEO\Favicons
23 26
      */
24 27
     public function setColors($colors);
25 28
     
@@ -27,6 +30,7 @@  discard block
 block discarded – undo
27 30
      * Set general favicon sizes.
28 31
      *
29 32
      * @param array $sizes
33
+     * @return \Pyncil\SEO\Favicons
30 34
      */
31 35
     public function setSizes($sizes);
32 36
     
@@ -34,6 +38,7 @@  discard block
 block discarded – undo
34 38
      * Set Apple Touch sizes.
35 39
      *
36 40
      * @param array $sizes
41
+     * @return \Pyncil\SEO\Favicons
37 42
      */
38 43
     public function setAppleSizes($sizes);
39 44
     
@@ -41,13 +46,13 @@  discard block
 block discarded – undo
41 46
      * Set Android sizes.
42 47
      *
43 48
      * @param array $sizes
49
+     * @return \Pyncil\SEO\Favicons
44 50
      */
45 51
     public function setAndroidSizes($sizes);
46 52
     
47 53
     /**
48 54
      * Generate favicon HTML based on existing images.
49 55
      *
50
-     * @param string $dir Directory the favicons exist in
51 56
      *
52 57
      * @return string
53 58
      */
Please login to merge, or discard this patch.
src/Favicons.php 1 patch
Doc Comments   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     /**
89 89
      * Set general favicon sizes.
90 90
      *
91
-     * @param array $sizes
91
+     * @param string[] $sizes
92 92
      */
93 93
     public function setSizes($sizes)
94 94
     {
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
     /**
101 101
      * Set Apple Touch sizes.
102 102
      *
103
-     * @param array $sizes
103
+     * @param string[] $sizes
104 104
      */
105 105
     public function setAppleSizes($sizes)
106 106
     {
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     /**
113 113
      * Set Android sizes.
114 114
      *
115
-     * @param array $sizes
115
+     * @param string[] $sizes
116 116
      */
117 117
     public function setAndroidSizes($sizes)
118 118
     {
@@ -124,7 +124,6 @@  discard block
 block discarded – undo
124 124
     /**
125 125
      * Generate favicon HTML based on existing images.
126 126
      *
127
-     * @param string $dir Directory the favicons exist in
128 127
      *
129 128
      * @return string
130 129
      */
Please login to merge, or discard this patch.