GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( e6da82...8fc91f )
by Emil
02:38
created
test/Escaper/CEscaperTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -12,18 +12,18 @@
 block discarded – undo
12 12
 class CEscaperTest extends \PHPUnit_Framework_TestCase
13 13
 {
14 14
 	/**
15
-     * Test 
16
-     *
17
-     * @return void
18
-     *
19
-     */
15
+	 * Test 
16
+	 *
17
+	 * @return void
18
+	 *
19
+	 */
20 20
 	public function testConstructorSuccess()
21 21
 	{
22 22
 		$el = new \Scelus\Escaper\CEscaper();
23 23
 
24
-        $res = $el->getEncoding();
25
-        $exp = 'UTF-8';
26
-        $this->assertEquals($res, $exp, "Created element name missmatch.");
24
+		$res = $el->getEncoding();
25
+		$exp = 'UTF-8';
26
+		$this->assertEquals($res, $exp, "Created element name missmatch.");
27 27
 	}
28 28
 	
29 29
 	public function testSetAndGetEncoding()
Please login to merge, or discard this patch.
autoloader.php 2 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -13,30 +13,30 @@
 block discarded – undo
13 13
  */
14 14
 spl_autoload_register(function ($class) {
15 15
 
16
-    // project-specific namespace prefix
17
-    //$prefix = 'Foo\\Bar\\';
18
-    $prefix = 'Scelus\\';
16
+	// project-specific namespace prefix
17
+	//$prefix = 'Foo\\Bar\\';
18
+	$prefix = 'Scelus\\';
19 19
 
20
-    // base directory for the namespace prefix
21
-    $base_dir = __DIR__ . '/src/';
20
+	// base directory for the namespace prefix
21
+	$base_dir = __DIR__ . '/src/';
22 22
 
23
-    // does the class use the namespace prefix?
24
-    $len = strlen($prefix);
25
-    if (strncmp($prefix, $class, $len) !== 0) {
26
-        // no, move to the next registered autoloader
27
-        return;
28
-    }
23
+	// does the class use the namespace prefix?
24
+	$len = strlen($prefix);
25
+	if (strncmp($prefix, $class, $len) !== 0) {
26
+		// no, move to the next registered autoloader
27
+		return;
28
+	}
29 29
 
30
-    // get the relative class name
31
-    $relative_class = substr($class, $len);
30
+	// get the relative class name
31
+	$relative_class = substr($class, $len);
32 32
 
33
-    // replace the namespace prefix with the base directory, replace namespace
34
-    // separators with directory separators in the relative class name, append
35
-    // with .php
36
-    $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
33
+	// replace the namespace prefix with the base directory, replace namespace
34
+	// separators with directory separators in the relative class name, append
35
+	// with .php
36
+	$file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';
37 37
 
38
-    // if the file exists, require it
39
-    if (file_exists($file)) {
40
-        require $file;
41
-    }
38
+	// if the file exists, require it
39
+	if (file_exists($file)) {
40
+		require $file;
41
+	}
42 42
 });
43 43
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
  * @param string $class The fully-qualified class name.
12 12
  * @return void
13 13
  */
14
-spl_autoload_register(function ($class) {
14
+spl_autoload_register(function($class) {
15 15
 
16 16
     // project-specific namespace prefix
17 17
     //$prefix = 'Foo\\Bar\\';
Please login to merge, or discard this patch.