@@ -6,7 +6,7 @@ |
||
6 | 6 | */ |
7 | 7 | |
8 | 8 | if (!defined('TYPO3_MODE')) { |
9 | - die('Access denied.'); |
|
9 | + die('Access denied.'); |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | \HDNET\Autoloader\Loader::extTables('FRUIT', 'ink'); |
13 | 13 | \ No newline at end of file |
@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | // autoload.php @generated by Composer |
4 | 4 | |
5 | -require_once __DIR__ . '/composer' . '/autoload_real.php'; |
|
5 | +require_once __DIR__.'/composer'.'/autoload_real.php'; |
|
6 | 6 | |
7 | 7 | return ComposerAutoloaderInitabaa6009721fd9098637a3946e017ca9::getLoader(); |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public static function loadClassLoader($class) |
10 | 10 | { |
11 | 11 | if ('Composer\Autoload\ClassLoader' === $class) { |
12 | - require __DIR__ . '/ClassLoader.php'; |
|
12 | + require __DIR__.'/ClassLoader.php'; |
|
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
@@ -23,17 +23,17 @@ discard block |
||
23 | 23 | self::$loader = $loader = new \Composer\Autoload\ClassLoader(); |
24 | 24 | spl_autoload_unregister(array('ComposerAutoloaderInitabaa6009721fd9098637a3946e017ca9', 'loadClassLoader')); |
25 | 25 | |
26 | - $map = require __DIR__ . '/autoload_namespaces.php'; |
|
26 | + $map = require __DIR__.'/autoload_namespaces.php'; |
|
27 | 27 | foreach ($map as $namespace => $path) { |
28 | 28 | $loader->set($namespace, $path); |
29 | 29 | } |
30 | 30 | |
31 | - $map = require __DIR__ . '/autoload_psr4.php'; |
|
31 | + $map = require __DIR__.'/autoload_psr4.php'; |
|
32 | 32 | foreach ($map as $namespace => $path) { |
33 | 33 | $loader->setPsr4($namespace, $path); |
34 | 34 | } |
35 | 35 | |
36 | - $classMap = require __DIR__ . '/autoload_classmap.php'; |
|
36 | + $classMap = require __DIR__.'/autoload_classmap.php'; |
|
37 | 37 | if ($classMap) { |
38 | 38 | $loader->addClassMap($classMap); |
39 | 39 | } |
@@ -6,6 +6,6 @@ |
||
6 | 6 | $baseDir = dirname($vendorDir); |
7 | 7 | |
8 | 8 | return array( |
9 | - 'TijsVerkoyen\\CssToInlineStyles\\' => array($vendorDir . '/tijsverkoyen/css-to-inline-styles/src'), |
|
10 | - 'Symfony\\Component\\CssSelector\\' => array($vendorDir . '/symfony/css-selector'), |
|
9 | + 'TijsVerkoyen\\CssToInlineStyles\\' => array($vendorDir.'/tijsverkoyen/css-to-inline-styles/src'), |
|
10 | + 'Symfony\\Component\\CssSelector\\' => array($vendorDir.'/symfony/css-selector'), |
|
11 | 11 | ); |
@@ -87,7 +87,7 @@ |
||
87 | 87 | */ |
88 | 88 | public function __toString() |
89 | 89 | { |
90 | - $arguments = implode(', ', array_map(function (Token $token) { |
|
90 | + $arguments = implode(', ', array_map(function(Token $token) { |
|
91 | 91 | return "'".$token->getValue()."'"; |
92 | 92 | }, $this->arguments)); |
93 | 93 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | return array( |
30 | 30 | array(new ElementNode(), 0), |
31 | 31 | array(new ElementNode(null, 'element'), 1), |
32 | - array(new ElementNode('namespace', 'element'),1), |
|
32 | + array(new ElementNode('namespace', 'element'), 1), |
|
33 | 33 | ); |
34 | 34 | } |
35 | 35 | } |
@@ -24,7 +24,7 @@ |
||
24 | 24 | { |
25 | 25 | $parser = new Parser(); |
26 | 26 | |
27 | - $this->assertEquals($representation, array_map(function (SelectorNode $node) { |
|
27 | + $this->assertEquals($representation, array_map(function(SelectorNode $node) { |
|
28 | 28 | return (string) $node->getTree(); |
29 | 29 | }, $parser->parse($source))); |
30 | 30 | } |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | { |
152 | 152 | return array( |
153 | 153 | array('div', array('outer-div', 'li-div', 'foobar-div')), |
154 | - array('DIV', array('outer-div', 'li-div', 'foobar-div')), // case-insensitive in HTML |
|
154 | + array('DIV', array('outer-div', 'li-div', 'foobar-div')), // case-insensitive in HTML |
|
155 | 155 | array('div div', array('li-div')), |
156 | 156 | array('div, div div', array('outer-div', 'li-div', 'foobar-div')), |
157 | 157 | array('a[name]', array('name-anchor')), |
@@ -228,9 +228,9 @@ discard block |
||
228 | 228 | array('* :root', array()), |
229 | 229 | array('*:contains("link")', array('html', 'outer-div', 'tag-anchor', 'nofollow-anchor')), |
230 | 230 | array(':CONtains("link")', array('html', 'outer-div', 'tag-anchor', 'nofollow-anchor')), |
231 | - array('*:contains("LInk")', array()), // case sensitive |
|
231 | + array('*:contains("LInk")', array()), // case sensitive |
|
232 | 232 | array('*:contains("e")', array('html', 'nil', 'outer-div', 'first-ol', 'first-li', 'paragraph', 'p-em')), |
233 | - array('*:contains("E")', array()), // case-sensitive |
|
233 | + array('*:contains("E")', array()), // case-sensitive |
|
234 | 234 | array('.a', array('first-ol')), |
235 | 235 | array('.b', array('first-ol')), |
236 | 236 | array('*.a', array('first-ol')), |
@@ -65,7 +65,7 @@ |
||
65 | 65 | */ |
66 | 66 | private function replaceUnicodeSequences($value) |
67 | 67 | { |
68 | - return preg_replace_callback($this->patterns->getUnicodeEscapePattern(), function ($match) { |
|
68 | + return preg_replace_callback($this->patterns->getUnicodeEscapePattern(), function($match) { |
|
69 | 69 | $c = hexdec($match[1]); |
70 | 70 | |
71 | 71 | if (0x80 > $c %= 0x200000) { |