Passed
Push — master ( 69c104...59abc7 )
by Aimeos
04:13
created
Classes/Base/I18n.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 	/**
24 24
 	 * Creates new translation objects.
25 25
 	 *
26
-     * @param array $i18nPaths Paths to the translation directories
26
+	 * @param array $i18nPaths Paths to the translation directories
27 27
 	 * @param array $langIds List of two letter ISO language IDs
28 28
 	 * @param array $local List of local translation entries overwriting the standard ones
29 29
 	 * @return array List of translation objects implementing MW_Translation_Interface
Please login to merge, or discard this patch.
Classes/Base/Config.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 	/**
24 24
 	 * Creates a new configuration object.
25 25
 	 *
26
-     * @param array $paths Paths to the configuration directories
26
+	 * @param array $paths Paths to the configuration directories
27 27
 	 * @param array $local Multi-dimensional associative list with local configuration
28 28
 	 * @return \Aimeos\MW\Config\Iface Configuration object
29 29
 	 */
Please login to merge, or discard this patch.
Classes/Command/JobsCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 	protected function execute( InputInterface $input, OutputInterface $output )
58 58
 	{
59 59
 		$aimeos = \Aimeos\Aimeos\Base::getAimeos();
60
-        $config = \Aimeos\Aimeos\Base::getConfig();
60
+		$config = \Aimeos\Aimeos\Base::getConfig();
61 61
 		$context = \Aimeos\Aimeos\Base::getContext( $config );
62 62
 		$process = $context->getProcess();
63 63
 
Please login to merge, or discard this patch.
ext_localconf.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -260,11 +260,11 @@
 block discarded – undo
260 260
  */
261 261
 
262 262
 if( !is_array( $GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['aimeos'] ) ) {
263
-    $GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['aimeos'] = array();
263
+	$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['aimeos'] = array();
264 264
 }
265 265
 
266 266
 if( !isset($GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['aimeos']['frontend'] ) ) {
267
-    $GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['aimeos']['frontend'] = 'TYPO3\\CMS\\Core\\Cache\\Frontend\\StringFrontend';
267
+	$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['aimeos']['frontend'] = 'TYPO3\\CMS\\Core\\Cache\\Frontend\\StringFrontend';
268 268
 }
269 269
 
270 270
 if( !isset($GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['aimeos']['options'] ) ) {
Please login to merge, or discard this patch.
Configuration/Commands.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    'aimeos:jobs' => [
5
-        'class' => \Aimeos\Aimeos\Command\JobsCommand::class
4
+	'aimeos:jobs' => [
5
+		'class' => \Aimeos\Aimeos\Command\JobsCommand::class
6 6
 	],
7
-    'aimeos:setup' => [
8
-        'class' => \Aimeos\Aimeos\Command\SetupCommand::class
7
+	'aimeos:setup' => [
8
+		'class' => \Aimeos\Aimeos\Command\SetupCommand::class
9 9
 	],
10 10
 ];
11 11
\ No newline at end of file
Please login to merge, or discard this patch.