Completed
Push — master ( 9884b2...8a04c2 )
by Juliette
03:25
created
include/functions.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -340,7 +340,7 @@
 block discarded – undo
340 340
 	 * @param string $haystack
341 341
 	 * @param string $needle
342 342
 	 *
343
-	 * @return int|false
343
+	 * @return integer
344 344
 	 */
345 345
 	function stripos( $haystack, $needle ) {
346 346
 		$haystack = strtolower( $haystack );
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Some generic functions and mock objects for test variables.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * Some generic functions and mock objects for test variables.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.
class.vartype-compare.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Variable comparison tests.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * Variable comparison tests.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.
class.vartype-php5.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP 5+ tests.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * PHP 5+ tests.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.
class.vartype-php7.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * PHP 7+ tests.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * PHP 7+ tests.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.
class.vartype-test.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Variable testing tests.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * Variable testing tests.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.
class.vartype.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Generic variable testing parent class.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * Generic variable testing parent class.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.
index.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Controller.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * Controller.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 define( 'APP_DIR', dirname( __FILE__ ) );
9 9
 
Please login to merge, or discard this patch.
views/about.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * HTML content: About page.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * HTML content: About page.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.
views/error.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * HTML content: 404 error page.
4
- *
5
- * @package PHPCheatsheets
6
- */
3
+	 * HTML content: 404 error page.
4
+	 *
5
+	 * @package PHPCheatsheets
6
+	 */
7 7
 
8 8
 // Prevent direct calls to this file.
9 9
 if ( ! defined( 'APP_DIR' ) ) {
Please login to merge, or discard this patch.