@@ -19,7 +19,7 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | protected function additionalOptions() |
| 21 | 21 | { |
| 22 | - return 'toolbar: "undo redo | styleselect forecolor | bold italic | alignleft aligncenter alignright alignjustify | ' . |
|
| 22 | + return 'toolbar: "undo redo | styleselect forecolor | bold italic | alignleft aligncenter alignright alignjustify | '. |
|
| 23 | 23 | 'bullist numlist outdent indent ", '; |
| 24 | 24 | } |
| 25 | 25 | } |
@@ -45,6 +45,6 @@ |
||
| 45 | 45 | */ |
| 46 | 46 | public function getViewPartial() |
| 47 | 47 | { |
| 48 | - return $this->partial; |
|
| 48 | + return $this->partial; |
|
| 49 | 49 | } |
| 50 | 50 | } |
@@ -36,7 +36,7 @@ |
||
| 36 | 36 | public function init() |
| 37 | 37 | { |
| 38 | 38 | if (empty($this->baseFieldset)) { |
| 39 | - throw new \InvalidArgumentException('For the Form ' . get_class($this) . ' there is no Basefieldset'); |
|
| 39 | + throw new \InvalidArgumentException('For the Form '.get_class($this).' there is no Basefieldset'); |
|
| 40 | 40 | } |
| 41 | 41 | $this->addBaseFieldset(); |
| 42 | 42 | $this->addButtonsFieldset(); |
@@ -158,8 +158,8 @@ |
||
| 158 | 158 | if ($mimetypes) { |
| 159 | 159 | $mimeTypeValidator = new MimeType(); |
| 160 | 160 | $mimeTypeValidator->setMagicFile(false) |
| 161 | - ->disableMagicFile(true) |
|
| 162 | - ->setMimeType($this->getAllowedTypes()); |
|
| 161 | + ->disableMagicFile(true) |
|
| 162 | + ->setMimeType($this->getAllowedTypes()); |
|
| 163 | 163 | |
| 164 | 164 | $validators[] = $mimeTypeValidator; |
| 165 | 165 | } |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | |
| 145 | 145 | public function prepareElement(FormInterface $form) |
| 146 | 146 | { |
| 147 | - $form->setAttribute('class', ($this->isMultiple() ? 'multi' : 'single') . '-file-upload'); |
|
| 147 | + $form->setAttribute('class', ($this->isMultiple() ? 'multi' : 'single').'-file-upload'); |
|
| 148 | 148 | $form->setAttribute('data-is-empty', null === $this->getValue()); |
| 149 | 149 | parent::prepareElement($form); |
| 150 | 150 | } |
@@ -247,7 +247,7 @@ discard block |
||
| 247 | 247 | $entityName = $this->getName(); |
| 248 | 248 | |
| 249 | 249 | try { |
| 250 | - $fileEntity = $object->{"get" . $entityName}(); |
|
| 250 | + $fileEntity = $object->{"get".$entityName}(); |
|
| 251 | 251 | } catch (\OutOfBoundsException $e) { |
| 252 | 252 | return null; |
| 253 | 253 | } |
@@ -97,9 +97,9 @@ |
||
| 97 | 97 | { |
| 98 | 98 | $name = $this->getName(); |
| 99 | 99 | |
| 100 | - $this->startDateElement->setName($name . '[startDate]'); |
|
| 101 | - $this->endDateElement->setName($name . '[endDate]'); |
|
| 102 | - $this->currentCheckbox->setName($name . '[current]'); |
|
| 100 | + $this->startDateElement->setName($name.'[startDate]'); |
|
| 101 | + $this->endDateElement->setName($name.'[endDate]'); |
|
| 102 | + $this->currentCheckbox->setName($name.'[current]'); |
|
| 103 | 103 | } |
| 104 | 104 | |
| 105 | 105 | public function __clone() |
@@ -103,10 +103,10 @@ |
||
| 103 | 103 | */ |
| 104 | 104 | public function setFormId($formId) |
| 105 | 105 | { |
| 106 | - $this->formId = $formId . '-'; |
|
| 106 | + $this->formId = $formId.'-'; |
|
| 107 | 107 | |
| 108 | 108 | foreach ($this as $button) { |
| 109 | - $button->setAttribute('id', $this->formId . $button->getAttribute('id')); |
|
| 109 | + $button->setAttribute('id', $this->formId.$button->getAttribute('id')); |
|
| 110 | 110 | } |
| 111 | 111 | return $this; |
| 112 | 112 | } |
@@ -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 |
@@ -77,7 +77,7 @@ |
||
| 77 | 77 | } |
| 78 | 78 | $resolver = $e->getApplication()->getServiceManager()->get('ViewResolver'); |
| 79 | 79 | |
| 80 | - $template = $viewModel->getTemplate() . '.ajax'; |
|
| 80 | + $template = $viewModel->getTemplate().'.ajax'; |
|
| 81 | 81 | if ($resolver->resolve($template)) { |
| 82 | 82 | $viewModel->setTemplate($template); |
| 83 | 83 | } else { |