@@ -48,8 +48,8 @@ |
||
48 | 48 | $innerPattern = StringUtils::hasPcreUnicodeSupport() |
49 | 49 | ? '[^\p{L}]' |
50 | 50 | : '[^a-z0-9ßäöü ]'; |
51 | - $pattern = '~' . $innerPattern . '~isu'; |
|
52 | - $stripPattern = '~^' . $innerPattern . '+|' . $innerPattern . '+$~isu'; |
|
51 | + $pattern = '~'.$innerPattern.'~isu'; |
|
52 | + $stripPattern = '~^'.$innerPattern.'+|'.$innerPattern.'+$~isu'; |
|
53 | 53 | $parts = array(); |
54 | 54 | $textParts = explode(' ', $string); |
55 | 55 | foreach ($textParts as $part) { |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | public function get($key) |
23 | 23 | { |
24 | 24 | if (!isset($this->values[$key])) { |
25 | - throw new \OutOfBoundsException('Invalid key "' . $key . '"'); |
|
25 | + throw new \OutOfBoundsException('Invalid key "'.$key.'"'); |
|
26 | 26 | } |
27 | 27 | return $this->values[$key]; |
28 | 28 | } |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | |
46 | 46 | public function __call($method, $params) |
47 | 47 | { |
48 | - $type = substr($method, 0, 3); |
|
48 | + $type = substr($method, 0, 3); |
|
49 | 49 | |
50 | 50 | if ('get' == $type || 'set' == $type) { |
51 | - $filter = function ($match) { |
|
52 | - return '_' . strtolower($match[0]); |
|
51 | + $filter = function($match) { |
|
52 | + return '_'.strtolower($match[0]); |
|
53 | 53 | }; |
54 | 54 | $key = lcfirst(substr($method, 3)); |
55 | 55 | $key = preg_replace_callback('~([A-Z])~', $filter, $key); |
@@ -57,6 +57,6 @@ discard block |
||
57 | 57 | return 'get' == $type ? $this->get($key) : $this->set($key, (isset($params[0]) ? $params[0] : null)); |
58 | 58 | } |
59 | 59 | |
60 | - throw new \BadMethodCallException('Unknown method: ' . $method); |
|
60 | + throw new \BadMethodCallException('Unknown method: '.$method); |
|
61 | 61 | } |
62 | 62 | } |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | public function closureToDatabase() |
72 | 72 | { |
73 | 73 | return ' |
74 | - /* CODE FROM: ' . __METHOD__ . ' */ |
|
74 | + /* CODE FROM: ' . __METHOD__.' */ |
|
75 | 75 | if (!$value instanceOf \DateTime) return null; |
76 | 76 | $return = array( |
77 | 77 | "date" => new \MongoDate($value->getTimestamp()), |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | public function closureToPhp() |
114 | 114 | { |
115 | 115 | return ' |
116 | - /* CODE FROM: ' . __METHOD__ . ' */ |
|
116 | + /* CODE FROM: ' . __METHOD__.' */ |
|
117 | 117 | if (!is_array($value) |
118 | 118 | || !isset($value["date"]) |
119 | 119 | || !$value["date"] instanceOf \MongoDate |
@@ -41,7 +41,7 @@ |
||
41 | 41 | $notifications = $event->getNotifications(); |
42 | 42 | if (is_array($notifications) && !empty($notifications)) { |
43 | 43 | foreach ($notifications as $notification) { |
44 | - $headScript->appendScript('/* ' . $notification->getNotification() . ' */'); |
|
44 | + $headScript->appendScript('/* '.$notification->getNotification().' */'); |
|
45 | 45 | } |
46 | 46 | } |
47 | 47 | } |
@@ -71,8 +71,8 @@ |
||
71 | 71 | /* @var $paginator \Zend\Paginator\Paginator */ |
72 | 72 | $paginator = $paginators->get($paginatorName, $params); |
73 | 73 | $paginator->setCurrentPageNumber(isset($params['page']) ? $params['page'] : 1) |
74 | - ->setItemCountPerPage(isset($params['count']) ? $params['count'] : 10) |
|
75 | - ->setPageRange(isset($params['range']) ? $params['range'] : 5); |
|
74 | + ->setItemCountPerPage(isset($params['count']) ? $params['count'] : 10) |
|
75 | + ->setPageRange(isset($params['range']) ? $params['range'] : 5); |
|
76 | 76 | |
77 | 77 | return $paginator; |
78 | 78 |
@@ -28,7 +28,7 @@ |
||
28 | 28 | public function indexAction() |
29 | 29 | { |
30 | 30 | $view = $this->params('view'); |
31 | - $view = 'content/' . $view; |
|
31 | + $view = 'content/'.$view; |
|
32 | 32 | |
33 | 33 | $viewModel = new ViewModel(); |
34 | 34 | $viewModel->setTemplate($view); |
@@ -93,10 +93,10 @@ |
||
93 | 93 | $queryBuilder->find($this->getEntityClassName($requestedName)); |
94 | 94 | |
95 | 95 | $filterManager = $services->get('FilterManager'); |
96 | - $filterName = 'PaginationQuery/' . $requestedName; |
|
96 | + $filterName = 'PaginationQuery/'.$requestedName; |
|
97 | 97 | |
98 | 98 | if ($filterManager->has($filterName)) { |
99 | - $filter = $filterManager->get('PaginationQuery/' . $requestedName); |
|
99 | + $filter = $filterManager->get('PaginationQuery/'.$requestedName); |
|
100 | 100 | $queryBuilder = $filter->filter($this->options, $queryBuilder); |
101 | 101 | } |
102 | 102 |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | throw new \InvalidArgumentException( |
40 | 40 | sprintf( |
41 | 41 | 'Expect an array or an instance of \Traversable, but received %s', |
42 | - is_object($variables) ? 'instance of ' . get_class($variables) : 'skalar' |
|
42 | + is_object($variables) ? 'instance of '.get_class($variables) : 'skalar' |
|
43 | 43 | ) |
44 | 44 | ); |
45 | 45 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | throw new \InvalidArgumentException( |
70 | 70 | sprintf( |
71 | 71 | 'Expect an array or an instance of \Traversable, but received %s', |
72 | - is_object($callbacks) ? 'instance of ' . get_class($callbacks) : 'skalar' |
|
72 | + is_object($callbacks) ? 'instance of '.get_class($callbacks) : 'skalar' |
|
73 | 73 | ) |
74 | 74 | ); |
75 | 75 | } |
@@ -141,6 +141,6 @@ discard block |
||
141 | 141 | |
142 | 142 | protected function getNamePattern($name) |
143 | 143 | { |
144 | - return '~##' . preg_quote($name) . '##~is'; |
|
144 | + return '~##'.preg_quote($name).'##~is'; |
|
145 | 145 | } |
146 | 146 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | throw new \InvalidArgumentException( |
27 | 27 | sprintf( |
28 | 28 | 'Expected $options to be an array or \Traversable, but received %s', |
29 | - (is_object($options) ? 'instance of ' . get_class($options) : 'skalar') |
|
29 | + (is_object($options) ? 'instance of '.get_class($options) : 'skalar') |
|
30 | 30 | ) |
31 | 31 | ); |
32 | 32 | } |
@@ -53,10 +53,10 @@ |
||
53 | 53 | |
54 | 54 | if ($emailOrAddressOrList instanceOf UserInterface) { |
55 | 55 | parent::updateAddressList( |
56 | - $addressList, |
|
57 | - $emailOrAddressOrList->getInfo()->getEmail(), |
|
58 | - $emailOrAddressOrList->getInfo()->getDisplayName(false), |
|
59 | - $callingMethod |
|
56 | + $addressList, |
|
57 | + $emailOrAddressOrList->getInfo()->getEmail(), |
|
58 | + $emailOrAddressOrList->getInfo()->getDisplayName(false), |
|
59 | + $callingMethod |
|
60 | 60 | ); |
61 | 61 | return; |
62 | 62 | } |