@@ -54,8 +54,8 @@ |
||
54 | 54 | $split = explode("\r\n\r\n", $source); |
55 | 55 | |
56 | 56 | $http = $split[0]; |
57 | - if(isset($split[1]) && $payload = $split[1]) { |
|
58 | - if(preg_match('/Content-Type: ([^;]*)/', $http, $matches)) { |
|
57 | + if (isset($split[1]) && $payload = $split[1]) { |
|
58 | + if (preg_match('/Content-Type: ([^;]*)/', $http, $matches)) { |
|
59 | 59 | $mime = $matches[1]; |
60 | 60 | } else { |
61 | 61 | $mime = 'text/plain'; |
@@ -88,7 +88,7 @@ |
||
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)) |
@@ -34,7 +34,7 @@ discard block |
||
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 |
||
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')); |
@@ -40,7 +40,7 @@ |
||
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 |
@@ -46,13 +46,13 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | |
45 | 45 | public function setRules($rules) |
46 | 46 | { |
47 | - if(empty($rules)) { |
|
48 | - $this->_rules = [ 'none' => Validator::CONTEXT_IN_ONE_OF ]; |
|
47 | + if (empty($rules)) { |
|
48 | + $this->_rules = ['none' => Validator::CONTEXT_IN_ONE_OF]; |
|
49 | 49 | } else { |
50 | 50 | foreach ($rules as $key => $rule) { |
51 | 51 | list($plain, $type) = $this->_parse($rule); |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | private function _clean($rule, &$required) |
58 | 58 | { |
59 | 59 | if (strpos($rule, '.') !== false) { |
60 | - foreach (array_filter(array_keys($required), function ($key) use ($rule) { |
|
61 | - return fnmatch($key . '.*', $rule); |
|
60 | + foreach (array_filter(array_keys($required), function($key) use ($rule) { |
|
61 | + return fnmatch($key.'.*', $rule); |
|
62 | 62 | }) as $remove) { |
63 | 63 | unset($required[$remove]); |
64 | 64 | } |
@@ -66,11 +66,11 @@ discard block |
||
66 | 66 | } |
67 | 67 | |
68 | 68 | protected function _validate($context, $rules, $result = false) { |
69 | - if(empty($context)) { |
|
69 | + if (empty($context)) { |
|
70 | 70 | $context = ['none']; |
71 | 71 | } |
72 | 72 | |
73 | - while(list($rule, $type) = each($rules)) { |
|
73 | + while (list($rule, $type) = each($rules)) { |
|
74 | 74 | $matched = $this->_matches($context, $rule, $type); |
75 | 75 | |
76 | 76 | if ($type & Validator::CONTEXT_NOT_IN) { |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | |
124 | 124 | $rule = substr($rule, $pos); |
125 | 125 | |
126 | - if($type & self::CONTEXT_REGEX) { |
|
126 | + if ($type & self::CONTEXT_REGEX) { |
|
127 | 127 | $rule = "/^$rule(\\.\\w+)?/i"; |
128 | 128 | } |
129 | 129 | |
@@ -131,22 +131,22 @@ discard block |
||
131 | 131 | } |
132 | 132 | |
133 | 133 | private function _matches($context, $rule, $type) { |
134 | - if($type & self::CONTEXT_EXACTLY) { |
|
134 | + if ($type & self::CONTEXT_EXACTLY) { |
|
135 | 135 | return in_array($rule, $context, true); |
136 | - } elseif($type & self::CONTEXT_REGEX) { |
|
137 | - foreach($context as $item) { |
|
138 | - if(preg_match($rule, $item)) { |
|
136 | + } elseif ($type & self::CONTEXT_REGEX) { |
|
137 | + foreach ($context as $item) { |
|
138 | + if (preg_match($rule, $item)) { |
|
139 | 139 | return true; |
140 | 140 | } |
141 | 141 | } |
142 | 142 | return false; |
143 | 143 | } else { |
144 | - if(in_array($rule, $context, true)) { |
|
144 | + if (in_array($rule, $context, true)) { |
|
145 | 145 | return true; |
146 | 146 | } |
147 | 147 | |
148 | - foreach($context as $item) { |
|
149 | - if(fnmatch("$rule.*", $item)) { |
|
148 | + foreach ($context as $item) { |
|
149 | + if (fnmatch("$rule.*", $item)) { |
|
150 | 150 | return true; |
151 | 151 | } |
152 | 152 | } |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | { |
159 | 159 | static $validator; |
160 | 160 | if (!$validator) { |
161 | - $validator = new DelegateValidator(function () { |
|
161 | + $validator = new DelegateValidator(function() { |
|
162 | 162 | return true; |
163 | 163 | }); |
164 | 164 | } |
@@ -68,14 +68,14 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 | )); |
@@ -47,26 +47,26 @@ |
||
47 | 47 | |
48 | 48 | protected function execute(InputInterface $input, OutputInterface $output) |
49 | 49 | { |
50 | - if(!empty($input->getOption('debug')) && $output->getVerbosity() < OutputInterface::VERBOSITY_VERBOSE) { |
|
50 | + if (!empty($input->getOption('debug')) && $output->getVerbosity() < OutputInterface::VERBOSITY_VERBOSE) { |
|
51 | 51 | $output->setVerbosity(OutputInterface::VERBOSITY_VERBOSE); |
52 | 52 | } |
53 | 53 | |
54 | 54 | $output->writeln($this->getApplication()->getLongVersion()."\n", Output::VERBOSITY_VERBOSE); |
55 | 55 | $formatter = KeyLighter::get()->getFormatter($input->getOption('format')) ?: KeyLighter::get()->getDefaultFormatter(); |
56 | 56 | |
57 | - foreach($input->getArgument('path') as $filename) { |
|
57 | + foreach ($input->getArgument('path') as $filename) { |
|
58 | 58 | $this->process($input, $output, $filename, $formatter); |
59 | 59 | } |
60 | 60 | } |
61 | 61 | |
62 | 62 | protected function content($path) |
63 | 63 | { |
64 | - if(!($file = @fopen($path, 'r'))) { |
|
64 | + if (!($file = @fopen($path, 'r'))) { |
|
65 | 65 | return false; |
66 | 66 | } |
67 | 67 | |
68 | 68 | $content = ''; |
69 | - while(!feof($file)) { |
|
69 | + while (!feof($file)) { |
|
70 | 70 | $content .= fgets($file); |
71 | 71 | } |
72 | 72 | fclose($file); |
@@ -26,10 +26,10 @@ discard block |
||
26 | 26 | { |
27 | 27 | protected function execute(InputInterface $input, OutputInterface $output) |
28 | 28 | { |
29 | - if($input->getOption('dry')) { |
|
29 | + if ($input->getOption('dry')) { |
|
30 | 30 | $output->writeln($this->generate()); |
31 | 31 | } else { |
32 | - $path = __DIR__ . '/../../../Docs/languages.md'; |
|
32 | + $path = __DIR__.'/../../../Docs/languages.md'; |
|
33 | 33 | |
34 | 34 | $output->writeln("<info>Opening file ./Docs/languages.md ...</info>", OutputInterface::VERBOSITY_VERBOSE); |
35 | 35 | $content = file_get_contents($path); |
@@ -54,19 +54,19 @@ discard block |
||
54 | 54 | protected function generate() |
55 | 55 | { |
56 | 56 | $result = []; |
57 | - foreach(['name', 'mime', 'extension'] as $what) { |
|
58 | - foreach(KeyLighter::get()->registeredLanguages($what, true) as $name => $class) { |
|
57 | + foreach (['name', 'mime', 'extension'] as $what) { |
|
58 | + foreach (KeyLighter::get()->registeredLanguages($what, true) as $name => $class) { |
|
59 | 59 | $result[$class][$what][] = $name; |
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
63 | - $return = 'Class | Name | MIME | Extension'.PHP_EOL; |
|
64 | - $return .= '------|------|------|----------'.PHP_EOL; |
|
65 | - foreach($result as $class => $aliases) { |
|
63 | + $return = 'Class | Name | MIME | Extension'.PHP_EOL; |
|
64 | + $return .= '------|------|------|----------'.PHP_EOL; |
|
65 | + foreach ($result as $class => $aliases) { |
|
66 | 66 | $return .= '`'.$class.'` | '; |
67 | 67 | $return .= (isset($aliases['name']) ? '`'.implode('`, `', $aliases['name']).'`' : 'none').' | '; |
68 | 68 | $return .= (isset($aliases['mime']) ? '`'.implode('`, `', $aliases['mime']).'`' : 'none').' | '; |
69 | - $return .= (isset($aliases['extension']) ? '`'.implode('`, `', $aliases['extension']).'`' : 'none'). PHP_EOL; |
|
69 | + $return .= (isset($aliases['extension']) ? '`'.implode('`, `', $aliases['extension']).'`' : 'none').PHP_EOL; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | return $return; |