@@ -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'; |
@@ -68,21 +68,19 @@ discard block |
||
68 | 68 | public function languageByName($name, $params = []) |
69 | 69 | { |
70 | 70 | return isset($this->_languages['name'][$name]) ? |
71 | - $this->_languages['name'][$name]($params) : |
|
72 | - new PlainText($params); |
|
71 | + $this->_languages['name'][$name]($params) : new PlainText($params); |
|
73 | 72 | } |
74 | 73 | |
75 | 74 | public function languageByMime($mime, $params = []) |
76 | 75 | { |
77 | 76 | return isset($this->_languages['mime'][$mime]) ? |
78 | - $this->_languages['mime'][$mime]($params) : |
|
79 | - new PlainText($params); |
|
77 | + $this->_languages['mime'][$mime]($params) : new PlainText($params); |
|
80 | 78 | } |
81 | 79 | |
82 | 80 | public function languageByExt($filename, $params = []) |
83 | 81 | { |
84 | - foreach($this->_languages['extension'] as $mask => $class) { |
|
85 | - if(fnmatch($mask, $filename)) { |
|
82 | + foreach ($this->_languages['extension'] as $mask => $class) { |
|
83 | + if (fnmatch($mask, $filename)) { |
|
86 | 84 | return $class($params); |
87 | 85 | } |
88 | 86 | } |
@@ -108,7 +106,7 @@ discard block |
||
108 | 106 | |
109 | 107 | public function registeredLanguages($by = 'name', $class = false) |
110 | 108 | { |
111 | - return array_map(function ($e) use($class) { |
|
109 | + return array_map(function($e) use($class) { |
|
112 | 110 | return $e([])->getFQN($class); |
113 | 111 | }, $this->_languages[$by]); |
114 | 112 | } |
@@ -133,7 +131,7 @@ discard block |
||
133 | 131 | |
134 | 132 | public function init() |
135 | 133 | { |
136 | - foreach(include __DIR__.'/Config/aliases.php' as $alias) { |
|
134 | + foreach (include __DIR__.'/Config/aliases.php' as $alias) { |
|
137 | 135 | $class = $alias[0]; |
138 | 136 | unset($alias[0]); |
139 | 137 | |
@@ -147,13 +145,13 @@ discard block |
||
147 | 145 | */ |
148 | 146 | public function register($class, array $options) |
149 | 147 | { |
150 | - if(!is_callable($class) && is_subclass_of($class, Language::class)) { |
|
148 | + if (!is_callable($class) && is_subclass_of($class, Language::class)) { |
|
151 | 149 | $class = function($arguments = []) use ($class) { |
152 | 150 | return new $class($arguments); |
153 | 151 | }; |
154 | 152 | } |
155 | 153 | |
156 | - foreach($options as $name => $values) { |
|
154 | + foreach ($options as $name => $values) { |
|
157 | 155 | $this->_languages[$name] = array_merge($this->_languages[$name], array_fill_keys($values, $class)); |
158 | 156 | } |
159 | 157 | } |
@@ -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)) |
@@ -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 | } |