Passed
Push — master ( e45b53...cf614d )
by Austin
01:43
created
src/Reader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
  * @version     v0.3.0
8 8
  */
9 9
 
10
-declare(strict_types=1);
10
+declare(strict_types = 1);
11 11
 
12 12
 namespace AustinHeap\Security\Txt;
13 13
 
Please login to merge, or discard this patch.
src/Writer.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @version     v0.3.0
8 8
  */
9 9
 
10
-declare(strict_types=1);
10
+declare(strict_types = 1);
11 11
 
12 12
 namespace AustinHeap\Security\Txt;
13 13
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @var array
28 28
      */
29
-    private $lines              = [];
29
+    private $lines = [];
30 30
 
31 31
     /**
32 32
      * Create a new Writer instance.
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
         $comment = trim($comment);
50 50
 
51 51
         if (!empty($comment))
52
-            $comment = ' ' . $comment;
52
+            $comment = ' '.$comment;
53 53
 
54
-        return $this->line(trim('#' . $comment));
54
+        return $this->line(trim('#'.$comment));
55 55
     }
56 56
 
57 57
     /**
@@ -133,14 +133,14 @@  discard block
 block discarded – undo
133 133
             throw new \Exception('One (or more) contacts must be defined.');
134 134
 
135 135
         foreach ($this->contacts as $contact)
136
-            $this->line('Contact: ' . trim($contact));
136
+            $this->line('Contact: '.trim($contact));
137 137
 
138 138
         if (!empty($this->encryption)) {
139 139
             if ($this->comments)
140 140
                 $this->spacer()
141 141
                      ->comment('Our PGP key');
142 142
 
143
-            $this->line('Encryption: ' . trim($this->encryption));
143
+            $this->line('Encryption: '.trim($this->encryption));
144 144
         }
145 145
 
146 146
         if (!empty($this->disclosure)) {
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
                 $this->spacer()
149 149
                      ->comment('Our disclosure policy');
150 150
 
151
-            $this->line('Disclosure: ' . trim(ucfirst($this->disclosure)));
151
+            $this->line('Disclosure: '.trim(ucfirst($this->disclosure)));
152 152
         }
153 153
 
154 154
         if (!empty($this->acknowledgement)) {
@@ -156,20 +156,20 @@  discard block
 block discarded – undo
156 156
                 $this->spacer()
157 157
                      ->comment('Our public acknowledgement');
158 158
 
159
-            $this->line('Acknowledgement: ' . trim($this->acknowledgement));
159
+            $this->line('Acknowledgement: '.trim($this->acknowledgement));
160 160
         }
161 161
 
162 162
         if ($this->debug)
163 163
             $this->spacer()
164 164
                  ->comment()
165 165
                  ->comment(
166
-                    'Generated by "' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php') . '-security-txt"' .
167
-                    (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v' . LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '')) .
168
-                    ' (https://github.com/austinheap/' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php') . '-security-txt' . (defined('LARAVEL_SECURITY_TXT_VERSION') ? '/releases/tag/v' . LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v' . PHP_SECURITY_TXT_VERSION : '')) . ')')
166
+                    'Generated by "'.(defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php').'-security-txt"'.
167
+                    (defined('LARAVEL_SECURITY_TXT_VERSION') ? ' v'.LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? ' v'.PHP_SECURITY_TXT_VERSION : '')).
168
+                    ' (https://github.com/austinheap/'.(defined('LARAVEL_SECURITY_TXT_VERSION') ? 'laravel' : 'php').'-security-txt'.(defined('LARAVEL_SECURITY_TXT_VERSION') ? '/releases/tag/v'.LARAVEL_SECURITY_TXT_VERSION : (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v'.PHP_SECURITY_TXT_VERSION : '')).')')
169 169
                  ->comment(
170
-                    'using "php-security-txt"' . (defined('PHP_SECURITY_TXT_VERSION') ? ' v' . PHP_SECURITY_TXT_VERSION : '') .
171
-                    ' (https://github.com/austinheap/php-security-txt' . (defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v' . PHP_SECURITY_TXT_VERSION : '') . ')')
172
-                 ->comment('in ' . round((microtime(true) - $time) * 1000, 6) . ' seconds on ' . now() . '.')
170
+                    'using "php-security-txt"'.(defined('PHP_SECURITY_TXT_VERSION') ? ' v'.PHP_SECURITY_TXT_VERSION : '').
171
+                    ' (https://github.com/austinheap/php-security-txt'.(defined('PHP_SECURITY_TXT_VERSION') ? '/releases/tag/v'.PHP_SECURITY_TXT_VERSION : '').')')
172
+                 ->comment('in '.round((microtime(true) - $time) * 1000, 6).' seconds on '.now().'.')
173 173
                  ->comment()
174 174
                  ->spacer();
175 175
 
Please login to merge, or discard this patch.
src/SecurityTxt.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  * @version     v0.3.0
8 8
  */
9 9
 
10
-declare(strict_types=1);
10
+declare(strict_types = 1);
11 11
 
12 12
 namespace AustinHeap\Security\Txt;
13 13
 
@@ -26,77 +26,77 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @var string
28 28
      */
29
-    const VERSION               = '0.3.0';
29
+    const VERSION = '0.3.0';
30 30
 
31 31
     /**
32 32
      * Internal parent object.
33 33
      *
34 34
      * @var \AustinHeap\Security\Txt\Writer|\AustinHeap\Security\Txt\Reader
35 35
      */
36
-    private $parent             = null;
36
+    private $parent = null;
37 37
 
38 38
     /**
39 39
      * Internal Writer object.
40 40
      *
41 41
      * @var \AustinHeap\Security\Txt\Writer
42 42
      */
43
-    protected $writer           = null;
43
+    protected $writer = null;
44 44
 
45 45
     /**
46 46
      * Internal Reader object.
47 47
      *
48 48
      * @var \AustinHeap\Security\Txt\Reader
49 49
      */
50
-    protected $reader           = null;
50
+    protected $reader = null;
51 51
 
52 52
     /**
53 53
      * Internal text cache.
54 54
      *
55 55
      * @var string
56 56
      */
57
-    protected $text             = null;
57
+    protected $text = null;
58 58
 
59 59
     /**
60 60
      * Enable debug output.
61 61
      *
62 62
      * @var bool
63 63
      */
64
-    protected $debug            = false;
64
+    protected $debug = false;
65 65
 
66 66
     /**
67 67
      * Enable built-in comments.
68 68
      *
69 69
      * @var bool
70 70
      */
71
-    protected $comments         = true;
71
+    protected $comments = true;
72 72
 
73 73
     /**
74 74
      * The security contact(s).
75 75
      *
76 76
      * @var array
77 77
      */
78
-    protected $contacts         = [];
78
+    protected $contacts = [];
79 79
 
80 80
     /**
81 81
      * The PGP key file URL.
82 82
      *
83 83
      * @var string
84 84
      */
85
-    protected $encryption       = null;
85
+    protected $encryption = null;
86 86
 
87 87
     /**
88 88
      * The disclosure policy.
89 89
      *
90 90
      * @var string
91 91
      */
92
-    protected $disclosure       = null;
92
+    protected $disclosure = null;
93 93
 
94 94
     /**
95 95
      * The acknowledgement URL.
96 96
      *
97 97
      * @var string
98 98
      */
99
-    protected $acknowledgement  = null;
99
+    protected $acknowledgement = null;
100 100
 
101 101
     /**
102 102
      * Create a new SecurityTxt instance.
Please login to merge, or discard this patch.