Completed
Push — master ( 7fc722...51c1b8 )
by Kacper
03:43
created
Utils/ConsoleHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 
112 112
     private function _set($style)
113 113
     {
114
-        $escape = "\e[".implode(';', array_map(function ($style, $name) {
114
+        $escape = "\e[".implode(';', array_map(function($style, $name) {
115 115
             return $this->_style($style, $name);
116 116
         }, array_keys($style), $style)).'m';
117 117
 
Please login to merge, or discard this patch.
Formatter/HtmlFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         /** @var Token $token */
36 36
         foreach ($tokens as $token) {
37 37
             $result .= htmlspecialchars(substr($source, $last, $token->pos - $last));
38
-            $result .= $token->isStart() ? '<span class="' . str_replace('.', ' ', $token->name) . '">' : '</span>';
38
+            $result .= $token->isStart() ? '<span class="'.str_replace('.', ' ', $token->name).'">' : '</span>';
39 39
 
40 40
             $last = $token->pos;
41 41
         }
Please login to merge, or discard this patch.
Language/Latex.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
                 new Rule(new RegexMatcher('/(\\\\\[.*?\\\\\])/s')),
41 41
                 new Rule(
42 42
                     new RegexMatcher(
43
-                        '/\\\begin{((?:' . implode('|', self::$mathEnvironments) . ')\*?)}(.*?)\\\end{\1}/s',
43
+                        '/\\\begin{((?:'.implode('|', self::$mathEnvironments).')\*?)}(.*?)\\\end{\1}/s',
44 44
                         [2 => Token::NAME]
45 45
                     )
46 46
                 ),
Please login to merge, or discard this patch.
Language/GreedyLanguage.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $result   = new Result($tokens->getSource(), $tokens->current());
98 98
 
99 99
         for ($tokens->next(); $tokens->valid(); $tokens->next()) {
100
-            if(!$tokens->current()->process($context, $this, $result, $tokens)) {
100
+            if (!$tokens->current()->process($context, $this, $result, $tokens)) {
101 101
                 break;
102 102
             }
103 103
         }
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     private function _rules($embedded = false)
148 148
     {
149 149
         $rules = clone $this->rules;
150
-        if(is_bool($embedded)) {
150
+        if (is_bool($embedded)) {
151 151
             $rules->addMany(['language.'.$this->getIdentifier() => $this->getEnds($embedded)]);
152 152
         }
153 153
 
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@
 block discarded – undo
141 141
     /**
142 142
      * @param bool $embedded
143 143
      *
144
-     * @return Rule[]
144
+     * @return \Generator
145 145
      */
146 146
     private function _rules($embedded = false)
147 147
     {
Please login to merge, or discard this patch.
Language/Language.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
     public final function getFQN($class = false)
90 90
     {
91
-        $embedded =$this->getEmbedded();
91
+        $embedded = $this->getEmbedded();
92 92
         return  ($class ? get_class($this) : $this->getIdentifier()).(
93 93
             !empty($embedded)
94 94
                 ? ' + '.implode(', ', array_map($class ? 'get_class' : function(Language $e) { return $e->getIdentifier(); }, $embedded))
Please login to merge, or discard this patch.
bin/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     protected function getCommandName(InputInterface $input)
35 35
     {
36 36
         $command = $input->getFirstArgument();
37
-        if(!$command && !$input->hasParameterOption('--help')) {
37
+        if (!$command && !$input->hasParameterOption('--help')) {
38 38
             return 'list';
39 39
         } elseif ($this->has($command)) {
40 40
             return $command;
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     protected function getDefaultInputDefinition()
57 57
     {
58 58
         $input = parent::getDefaultInputDefinition();
59
-        $input->setOptions(array_filter($input->getOptions(), function (InputOption $option) {
59
+        $input->setOptions(array_filter($input->getOptions(), function(InputOption $option) {
60 60
             return $option->getShortcut() != 'q';
61 61
         }));
62 62
         $input->addOption(new InputOption('no-output', 's', InputOption::VALUE_NONE, 'Disables output, useful for debug'));
Please login to merge, or discard this patch.
bin/Commands/FormattersCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $formatters = KeyLighter::get()->registeredFormatters();
41 41
         $table = new Table($output);
42 42
 
43
-        if(!$input->getOption('headerless')) {
43
+        if (!$input->getOption('headerless')) {
44 44
             $table->setHeaders(['Name', 'Formatter']);
45 45
         }
46 46
 
Please login to merge, or discard this patch.
bin/Commands/LanguagesCommand.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -46,13 +46,13 @@  discard block
 block discarded – undo
46 46
 
47 47
         $table = new Table($output);
48 48
 
49
-        if(!$input->getOption('headerless')) {
49
+        if (!$input->getOption('headerless')) {
50 50
             $table->setHeaders([ucfirst($input->getArgument('by')), $input->getOption('classes') ? 'Class name' : 'Language']);
51 51
         }
52 52
 
53 53
         $table->setRows(array_map(function($language) {
54 54
             return [
55
-                implode(', ', array_map(function ($f) { return "<comment>{$f}</comment>"; }, $language['aliases'])),
55
+                implode(', ', array_map(function($f) { return "<comment>{$f}</comment>"; }, $language['aliases'])),
56 56
                 $language['class']
57 57
             ];
58 58
         }, $input->getOption('no-group') ? $this->processNonGrouped($languages) : $this->processGrouped($languages)));
@@ -63,8 +63,8 @@  discard block
 block discarded – undo
63 63
 
64 64
     protected function processGrouped($languages) {
65 65
         $result = [];
66
-        foreach($languages as $alias => $class) {
67
-            if(!isset($result[$class])) {
66
+        foreach ($languages as $alias => $class) {
67
+            if (!isset($result[$class])) {
68 68
                 $result[$class] = ['aliases' => [], 'class' => $class];
69 69
             }
70 70
 
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     protected function processNonGrouped($languages) {
78 78
         $result = [];
79
-        foreach($languages as $alias => $class) {
79
+        foreach ($languages as $alias => $class) {
80 80
             $result[] = ['aliases' => [$alias], 'class' => $class];
81 81
         }
82 82
 
Please login to merge, or discard this patch.
bin/VerboseOutput.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -68,14 +68,14 @@  discard block
 block discarded – undo
68 68
         $parsed    = $this->parse($tokenized);
69 69
         $formatted = $this->format($parsed);
70 70
 
71
-        if($this->wants('time')) {
71
+        if ($this->wants('time')) {
72 72
             $this->_output->writeln(sprintf(
73 73
                 '<info>Overall:</info> %.4fs, %s chars/s',
74 74
                 array_sum($this->_times), number_format(strlen($this->_source) / array_sum($this->_times))
75 75
             ));
76 76
         }
77 77
 
78
-        if($this->wants('detailed-time')) {
78
+        if ($this->wants('detailed-time')) {
79 79
             $this->_slashed('Times             [s]', array_map(function($t) {
80 80
                 return number_format($t, 5);
81 81
             }, $this->_times));
@@ -84,11 +84,11 @@  discard block
 block discarded – undo
84 84
             }, $this->_times));
85 85
         }
86 86
 
87
-        if($this->wants('count')) {
87
+        if ($this->wants('count')) {
88 88
             $this->_slashed('Token count', array_map('number_format', $this->_counts));
89 89
         }
90 90
 
91
-        if($this->wants('density')) {
91
+        if ($this->wants('density')) {
92 92
             $this->_slashed('Token density [tokens/kB]', array_map(function($c) {
93 93
                 return number_format($c / strlen($this->_source) * 1024, 1);
94 94
             }, $this->_counts));
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
     protected function tokenize()
106 106
     {
107
-        $tokens = $this->benchmark(function () {
107
+        $tokens = $this->benchmark(function() {
108 108
             return $this->_language->tokenize($this->_source);
109 109
         }, $this->_times['tokenization']);
110 110
 
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 
134 134
     protected function parse(Tokens $tokens)
135 135
     {
136
-        $tokens = $this->benchmark(function () use ($tokens) {
136
+        $tokens = $this->benchmark(function() use ($tokens) {
137 137
             return $this->_language->parse($tokens);
138 138
         }, $this->_times['parsing']);
139 139
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 
148 148
     protected function format(Tokens $tokens)
149 149
     {
150
-        return $this->benchmark(function () use ($tokens) {
150
+        return $this->benchmark(function() use ($tokens) {
151 151
             return $this->_formatter->format($tokens);
152 152
         }, $this->_times['formatting']);
153 153
     }
@@ -156,10 +156,10 @@  discard block
 block discarded – undo
156 156
     {
157 157
         $this->_output->writeln(sprintf(
158 158
             "$message %s: %s",
159
-            implode(' / ', array_map(function ($f) {
159
+            implode(' / ', array_map(function($f) {
160 160
                 return "<comment>{$f}</comment>";
161 161
             }, array_keys($data))),
162
-            implode(' / ', array_map(function ($f) {
162
+            implode(' / ', array_map(function($f) {
163 163
                 return "<info>{$f}</info>";
164 164
             }, array_values($data)))
165 165
         ));
Please login to merge, or discard this patch.