Completed
Push — master ( a75889...7b0566 )
by
unknown
07:39
created
src/themes/WordpressStandard/Configuration/ImageSizes.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
      */
26 26
     public function __construct()
27 27
     {
28
-         add_image_size('example_size', 0, 220);
28
+            add_image_size('example_size', 0, 220);
29 29
     }
30 30
 }
Please login to merge, or discard this patch.
wp-config-custom-sample.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -12,34 +12,34 @@
 block discarded – undo
12 12
  * @author Beñat Espiña <[email protected]>
13 13
  */
14 14
 
15
-define('WP_MEMORY_LIMIT',     '64M');
15
+define('WP_MEMORY_LIMIT', '64M');
16 16
 
17
-define('DB_NAME',             'database_name_here');
18
-define('DB_USER',             'username_here');
19
-define('DB_PASSWORD',         'password_here');
20
-define('DB_HOST',             'localhost');
21
-define('DB_CHARSET',          'utf8');
22
-define('DB_COLLATE',          '');
17
+define('DB_NAME', 'database_name_here');
18
+define('DB_USER', 'username_here');
19
+define('DB_PASSWORD', 'password_here');
20
+define('DB_HOST', 'localhost');
21
+define('DB_CHARSET', 'utf8');
22
+define('DB_COLLATE', '');
23 23
 
24
-define('WPLANG',              '');       // '': default (English); 'es_ES': Spanish
25
-define('WP_DEBUG',            true);
24
+define('WPLANG', ''); // '': default (English); 'es_ES': Spanish
25
+define('WP_DEBUG', true);
26 26
 define('WP_AUTO_UPDATE_CORE', false);
27 27
 
28
-define('AUTH_KEY',           'Put your unique phrase here');
29
-define('SECURE_AUTH_KEY',    'Put your unique phrase here');
30
-define('LOGGED_IN_KEY',      'Put your unique phrase here');
31
-define('NONCE_KEY',          'Put your unique phrase here');
32
-define('AUTH_SALT',          'Put your unique phrase here');
33
-define('SECURE_AUTH_SALT',   'Put your unique phrase here');
34
-define('LOGGED_IN_SALT',     'Put your unique phrase here');
35
-define('NONCE_SALT',         'Put your unique phrase here');
28
+define('AUTH_KEY', 'Put your unique phrase here');
29
+define('SECURE_AUTH_KEY', 'Put your unique phrase here');
30
+define('LOGGED_IN_KEY', 'Put your unique phrase here');
31
+define('NONCE_KEY', 'Put your unique phrase here');
32
+define('AUTH_SALT', 'Put your unique phrase here');
33
+define('SECURE_AUTH_SALT', 'Put your unique phrase here');
34
+define('LOGGED_IN_SALT', 'Put your unique phrase here');
35
+define('NONCE_SALT', 'Put your unique phrase here');
36 36
 
37
-define('MAILER_HOST',        'smtp.mandrillapp.com');
38
-define('MAILER_PORT',        587);
39
-define('MAILER_USERNAME',    'Put the username here');
40
-define('MAILER_PASSWORD',    'Put the password here');
41
-define('MAILER_TO',          'The receiver email address');
42
-define('MAILER_FROM',        'The email address that will be shown to the receiver');
43
-define('MAILER_FROM_NAME',   'The name that will be shown to the receiver');
37
+define('MAILER_HOST', 'smtp.mandrillapp.com');
38
+define('MAILER_PORT', 587);
39
+define('MAILER_USERNAME', 'Put the username here');
40
+define('MAILER_PASSWORD', 'Put the password here');
41
+define('MAILER_TO', 'The receiver email address');
42
+define('MAILER_FROM', 'The email address that will be shown to the receiver');
43
+define('MAILER_FROM_NAME', 'The name that will be shown to the receiver');
44 44
 
45 45
 define('TRANSLATION_DOMAIN', 'Put your translation domain');
Please login to merge, or discard this patch.