Passed
Push — master ( 3200ed...d22e1c )
by Francis
01:14
created
phpunit/RefactorTest.php 1 patch
Indentation   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -3,30 +3,30 @@
 block discarded – undo
3 3
 use PHPUnit\Framework\TestCase;
4 4
 
5 5
 class RefactorTest extends TestCase {
6
-  /**
7
-   * Code Igniter Instance.
8
-   * @var object
9
-   */
10
-  private static $ci;
11
-  /**
12
-   * Package name for simplicity
13
-   * @var string
14
-   */
15
-  private const PACKAGE = "francis94c/refactor-ci";
6
+    /**
7
+     * Code Igniter Instance.
8
+     * @var object
9
+     */
10
+    private static $ci;
11
+    /**
12
+     * Package name for simplicity
13
+     * @var string
14
+     */
15
+    private const PACKAGE = "francis94c/refactor-ci";
16 16
 
17
-  /**
18
-   * Prerquisites for the Unit Tests.
19
-   *
20
-   * @covers JWT::__construct
21
-   */
22
-  public static function setUpBeforeClass(): void {
17
+    /**
18
+     * Prerquisites for the Unit Tests.
19
+     *
20
+     * @covers JWT::__construct
21
+     */
22
+    public static function setUpBeforeClass(): void {
23 23
     self::$ci =& get_instance();
24
-  }
25
-  /**
26
-   * [testLoadPackage description]
27
-   */
28
-  public function testLoadPackage():void {
24
+    }
25
+    /**
26
+     * [testLoadPackage description]
27
+     */
28
+    public function testLoadPackage():void {
29 29
     self::$ci->load->package(self::PACKAGE);
30 30
     $this->assertTrue(isset(self::$ci->refactor));
31
-  }
31
+    }
32 32
 }
Please login to merge, or discard this patch.