@@ -38,7 +38,7 @@ |
||
| 38 | 38 | $container->setParameter('sculpin_twig.view_paths', $config['view_paths']); |
| 39 | 39 | $container->setParameter('sculpin_twig.extensions', $config['extensions']); |
| 40 | 40 | |
| 41 | - if (! extension_loaded('intl')) { |
|
| 41 | + if (!extension_loaded('intl')) { |
|
| 42 | 42 | // Do not enable the intl Twig extension if the intl PHP extension is not installed. |
| 43 | 43 | $container->removeDefinition('sculpin_twig.extensions.intl'); |
| 44 | 44 | } |
@@ -22,8 +22,8 @@ |
||
| 22 | 22 | class Configuration implements ConfigurationInterface |
| 23 | 23 | { |
| 24 | 24 | /** |
| 25 | - * {@inheritdoc} |
|
| 26 | - */ |
|
| 25 | + * {@inheritdoc} |
|
| 26 | + */ |
|
| 27 | 27 | public function getConfigTreeBuilder() |
| 28 | 28 | { |
| 29 | 29 | $treeBuilder = new TreeBuilder; |
@@ -43,22 +43,22 @@ |
||
| 43 | 43 | */ |
| 44 | 44 | public function __construct($sourceDir, array $sourcePaths, array $paths, array $extensions) |
| 45 | 45 | { |
| 46 | - $mappedSourcePaths = array_map(function ($path) use ($sourceDir) { |
|
| 46 | + $mappedSourcePaths = array_map(function($path) use ($sourceDir) { |
|
| 47 | 47 | return $sourceDir.'/'.$path; |
| 48 | 48 | }, $sourcePaths); |
| 49 | 49 | |
| 50 | 50 | $allPaths = array_merge( |
| 51 | - array_filter($mappedSourcePaths, function ($path) { |
|
| 51 | + array_filter($mappedSourcePaths, function($path) { |
|
| 52 | 52 | return file_exists($path); |
| 53 | 53 | }), |
| 54 | - array_filter($paths, function ($path) { |
|
| 54 | + array_filter($paths, function($path) { |
|
| 55 | 55 | return file_exists($path); |
| 56 | 56 | }) |
| 57 | 57 | ); |
| 58 | 58 | |
| 59 | 59 | $this->filesystemLoader = new FilesystemLoader($allPaths); |
| 60 | - $this->extensions = array_map(function ($ext) { |
|
| 61 | - return $ext?'.'.$ext:$ext; |
|
| 60 | + $this->extensions = array_map(function($ext) { |
|
| 61 | + return $ext ? '.'.$ext : $ext; |
|
| 62 | 62 | }, $extensions); |
| 63 | 63 | } |
| 64 | 64 | |
@@ -47,9 +47,9 @@ |
||
| 47 | 47 | $this->arrayLoader = $arrayLoader; |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * {@inheritdoc} |
|
| 52 | - */ |
|
| 50 | + /** |
|
| 51 | + * {@inheritdoc} |
|
| 52 | + */ |
|
| 53 | 53 | public function formatBlocks(FormatContext $formatContext) |
| 54 | 54 | { |
| 55 | 55 | try { |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | |
| 68 | 68 | return $blocks; |
| 69 | 69 | } catch (\Exception $e) { |
| 70 | - print ' [ ' . get_class($e) . ': ' . $e->getMessage() . " ]\n"; |
|
| 70 | + print ' [ '.get_class($e).': '.$e->getMessage()." ]\n"; |
|
| 71 | 71 | } |
| 72 | 72 | } |
| 73 | 73 | |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | |
| 96 | 96 | return $this->twig->render($formatContext->templateId(), $data); |
| 97 | 97 | } catch (\Exception $e) { |
| 98 | - print ' [ ' . get_class($e) . ': ' . $e->getMessage() . " ]\n"; |
|
| 98 | + print ' [ '.get_class($e).': '.$e->getMessage()." ]\n"; |
|
| 99 | 99 | } |
| 100 | 100 | } |
| 101 | 101 | |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | if (!preg_match_all('/{%\s+block\s+(\w+)\s+%}(.*?){%\s+endblock\s+%}/si', $verbatim, $matches)) { |
| 121 | 121 | $template = '{% block content %}'.$template.'{% endblock %}'; |
| 122 | 122 | } |
| 123 | - $template = '{% extends "' . $layout . '" %}' . $template; |
|
| 123 | + $template = '{% extends "'.$layout.'" %}'.$template; |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | return $template; |
@@ -30,9 +30,9 @@ |
||
| 30 | 30 | * @var array |
| 31 | 31 | */ |
| 32 | 32 | protected static $addPlaceholderRe = array( |
| 33 | - '/^({%\s+block\s+(\w+).+?%})$/m', // {% %} style code |
|
| 34 | - '/^({%\s+endblock\s+%})$/m', // {% %} style code |
|
| 35 | - '/^({{.+?}})$/m', // {{ }} style code |
|
| 33 | + '/^({%\s+block\s+(\w+).+?%})$/m', // {% %} style code |
|
| 34 | + '/^({%\s+endblock\s+%})$/m', // {% %} style code |
|
| 35 | + '/^({{.+?}})$/m', // {{ }} style code |
|
| 36 | 36 | ); |
| 37 | 37 | |
| 38 | 38 | /** |
@@ -47,7 +47,7 @@ |
||
| 47 | 47 | $event['method'] = 'on'.preg_replace_callback(array( |
| 48 | 48 | '/(?<=\b)[a-z]/i', |
| 49 | 49 | '/[^a-z0-9]/i', |
| 50 | - ), function ($matches) { return strtoupper($matches[0]); }, $event['event']); |
|
| 50 | + ), function($matches) { return strtoupper($matches[0]); }, $event['event']); |
|
| 51 | 51 | $event['method'] = preg_replace('/[^a-z0-9]/i', '', $event['method']); |
| 52 | 52 | } |
| 53 | 53 | |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | if (!$foudAtLeastOne) { |
| 98 | - echo 'Didnt find at least one of this type : ' . $this->dataProviderName . PHP_EOL; |
|
| 98 | + echo 'Didnt find at least one of this type : '.$this->dataProviderName.PHP_EOL; |
|
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | $this->collection->init(); |
@@ -126,12 +126,12 @@ |
||
| 126 | 126 | |
| 127 | 127 | public function offsetExists($offset) |
| 128 | 128 | { |
| 129 | - return ! method_exists($this, $offset) && null !== $this->data()->get($offset); |
|
| 129 | + return !method_exists($this, $offset) && null !== $this->data()->get($offset); |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | public function offsetUnset($offset) |
| 133 | 133 | { |
| 134 | - if (! method_exists($this, $offset)) { |
|
| 134 | + if (!method_exists($this, $offset)) { |
|
| 135 | 135 | $this->data()->remove($offset); |
| 136 | 136 | } |
| 137 | 137 | } |
@@ -15,6 +15,6 @@ |
||
| 15 | 15 | { |
| 16 | 16 | public function process($str) |
| 17 | 17 | { |
| 18 | - return '∙∙∙∙∙·▫▫ᵒᴼᵒ▫ₒₒ▫ᵒᴼᵒ▫ₒₒ▫ᵒᴼᵒ☼)==' . $str . '==>'; |
|
| 18 | + return '∙∙∙∙∙·▫▫ᵒᴼᵒ▫ₒₒ▫ᵒᴼᵒ▫ₒₒ▫ᵒᴼᵒ☼)=='.$str.'==>'; |
|
| 19 | 19 | } |
| 20 | 20 | } |