Completed
Push — develop ( 505371...4145c9 )
by Paul
02:23
created
castor.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,27 +1,27 @@
 block discarded – undo
1
-<?php defined( 'WPINC' ) || die;
1
+<?php defined('WPINC') || die;
2 2
 
3 3
 global $wp_version;
4 4
 
5
-if( !is_admin() && version_compare( '7.0', phpversion(), '>' )) {
5
+if (!is_admin() && version_compare('7.0', phpversion(), '>')) {
6 6
 	wp_die(
7
-		__( 'You must be using PHP 7.0.0 or greater.', 'castor' ),
8
-		__( 'Unsupported PHP version', 'castor' )
7
+		__('You must be using PHP 7.0.0 or greater.', 'castor'),
8
+		__('Unsupported PHP version', 'castor')
9 9
 	);
10 10
 }
11 11
 
12
-if( !is_admin() && version_compare( '4.7', $wp_version, '>' )) {
12
+if (!is_admin() && version_compare('4.7', $wp_version, '>')) {
13 13
 	wp_die(
14
-		__( 'You must be using WordPress 4.7.0 or greater.', 'castor' ),
15
-		__( 'Unsupported WordPress version', 'castor' )
14
+		__('You must be using WordPress 4.7.0 or greater.', 'castor'),
15
+		__('Unsupported WordPress version', 'castor')
16 16
 	);
17 17
 }
18 18
 
19
-if( is_customize_preview() && filter_input( INPUT_GET, 'theme' )) {
19
+if (is_customize_preview() && filter_input(INPUT_GET, 'theme')) {
20 20
 	wp_die(
21
-		__( 'Theme must be activated prior to using the customizer.', 'castor' )
21
+		__('Theme must be activated prior to using the customizer.', 'castor')
22 22
 	);
23 23
 }
24 24
 
25
-require_once( ABSPATH . '/' . WPINC . '/class-oembed.php' );
25
+require_once(ABSPATH . '/' . WPINC . '/class-oembed.php');
26 26
 
27 27
 \GeminiLabs\Castor\Application::getInstance()->init();
Please login to merge, or discard this patch.