Completed
Pull Request — v3 (#460)
by
unknown
05:35
created
src/GameQ/Protocols/Samp.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -120,7 +120,7 @@
 block discarded – undo
120 120
 
121 121
         // Build the server code
122 122
         $this->server_code = implode('', array_map('chr', explode('.', $server->ip()))) .
123
-                             pack("S", $server->portClient());
123
+                                pack("S", $server->portClient());
124 124
 
125 125
         // Loop over the packets and update them
126 126
         foreach ($this->packets as $packetType => $packet) {
Please login to merge, or discard this patch.
src/GameQ/Protocols/Hurtworld.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -16,16 +16,16 @@
 block discarded – undo
16 16
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 17
  */
18 18
 namespace GameQ\Protocols;
19
- /**
20
- * Class Hurtworld
21
- *
22
- * Pre-cursor to the A2S (source) protocol system
23
- *
24
- * @author  Nikolay Ipanyuk <[email protected]>
25
- * @author  Austin Bischoff <[email protected]>
26
- *
27
- * @package GameQ\Protocols
28
- */
19
+    /**
20
+     * Class Hurtworld
21
+     *
22
+     * Pre-cursor to the A2S (source) protocol system
23
+     *
24
+     * @author  Nikolay Ipanyuk <[email protected]>
25
+     * @author  Austin Bischoff <[email protected]>
26
+     *
27
+     * @package GameQ\Protocols
28
+     */
29 29
 class Hurtworld extends Source
30 30
 {
31 31
     /**
Please login to merge, or discard this patch.