Skip to content

Commit abc9042

Browse files
committed
Fixing tabs.
1 parent 24f37de commit abc9042

File tree

3 files changed

+45
-45
lines changed

3 files changed

+45
-45
lines changed

.scrutinizer.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ filter:
2020
checks:
2121
php:
2222
code_rating: true
23-
duplication: true
23+
duplication: false
2424
one_class_per_file: true
2525
side_effects_or_types: true
2626
no_mixed_inline_html: false

src/Dispatcher/Plugins/CamelizeActionName.php

+18-18
Original file line numberDiff line numberDiff line change
@@ -52,25 +52,25 @@ public function __construct($uncamelizeDelimiter = '-')
5252
* @param \Phalcon\Events\Event $event The beforeDispatchLoop event.
5353
* @param \Phalcon\Mvc\Dispatcher $dispatcher The application dispatcher instance.
5454
*/
55-
public function beforeDispatchLoop(Event $event, Dispatcher $dispatcher)
56-
{
57-
$dispatcher->setActionName(Text::camelize($dispatcher->getActionName()));
58-
}
55+
public function beforeDispatchLoop(Event $event, Dispatcher $dispatcher)
56+
{
57+
$dispatcher->setActionName(Text::camelize($dispatcher->getActionName()));
58+
}
5959

60-
/**
61-
* In order for views to respect the uncamelized directory structure the action name must
62-
* be converted back into an uncamelized form.
63-
*
64-
* Note: Until \Phalcon\Text::uncamelize() supports variable delimiter we manually use hyphens.
65-
*
66-
* @link https://github.com/phalcon/cphalcon/issues/10396
67-
*
60+
/**
61+
* In order for views to respect the uncamelized directory structure the action name must
62+
* be converted back into an uncamelized form.
63+
*
64+
* Note: Until \Phalcon\Text::uncamelize() supports variable delimiter we manually use hyphens.
65+
*
66+
* @link https://github.com/phalcon/cphalcon/issues/10396
67+
*
6868
* @param \Phalcon\Events\Event $event The beforeDispatchLoop event.
6969
* @param \Phalcon\Mvc\Dispatcher $dispatcher The application dispatcher instance.
70-
*/
71-
public function afterDispatchLoop(Event $event, Dispatcher $dispatcher)
72-
{
73-
$dispatcher->setActionName(strtolower(preg_replace('/(.)([A-Z])/', '$1' .
74-
$this->uncamelizeDelimiter . '$2', $dispatcher->getActionName())));
75-
}
70+
*/
71+
public function afterDispatchLoop(Event $event, Dispatcher $dispatcher)
72+
{
73+
$dispatcher->setActionName(strtolower(preg_replace('/(.)([A-Z])/', '$1' .
74+
$this->uncamelizeDelimiter . '$2', $dispatcher->getActionName())));
75+
}
7676
}

src/Dispatcher/Plugins/NotFoundPlugin.php

+26-26
Original file line numberDiff line numberDiff line change
@@ -52,49 +52,49 @@ public function __construct(array $forwardHandlerNotFound = null, array $forward
5252
$this->forwardUnhandledException = $forwardUnhandledException;
5353
}
5454

55-
/**
56-
* Handled when the dispatcher throws an exception of any kind.
57-
*
55+
/**
56+
* Handled when the dispatcher throws an exception of any kind.
57+
*
5858
* @param \Phalcon\Events\Event $event The beforeDispatchLoop event.
5959
* @param \Phalcon\Mvc\Dispatcher $dispatcher The application dispatcher instance.
6060
* @param \Exception $exception The exception being handled.
6161
*
6262
* @return void|false Returns <tt>false</tt> if the exception is dispatched to a specific error handler; otherwise
6363
* returns <tt>null</tt>.
64-
*/
65-
public function beforeException(Event $event, Dispatcher $dispatcher, Exception $exception)
66-
{
67-
if ($exception instanceof DispatcherException) {
64+
*/
65+
public function beforeException(Event $event, Dispatcher $dispatcher, Exception $exception)
66+
{
67+
if ($exception instanceof DispatcherException) {
6868

69-
switch ($exception->getCode()) {
69+
switch ($exception->getCode()) {
7070
case Dispatcher::EXCEPTION_HANDLER_NOT_FOUND:
7171
return $this->forward($dispatcher, $this->forwardHandlerNotFound);
7272

7373

7474
case Dispatcher::EXCEPTION_ACTION_NOT_FOUND:
7575
return $this->forward($dispatcher, $this->forwardActionNotFound);
76-
}
77-
}
76+
}
77+
}
7878

79-
return $this->forward($dispatcher, $this->forwardUnhandledException);
80-
}
79+
return $this->forward($dispatcher, $this->forwardUnhandledException);
80+
}
8181

82-
/**
83-
* Convenience helper method to ensure that only dispatched exceptions return <tt>false</tt>, which is
84-
* important as this stops the current dispatch loop.
85-
*
82+
/**
83+
* Convenience helper method to ensure that only dispatched exceptions return <tt>false</tt>, which is
84+
* important as this stops the current dispatch loop.
85+
*
8686
* @param \Phalcon\Mvc\Dispatcher $dispatcher The application dispatcher instance.
87-
* @param array|null $forward Optional dispatch data.
88-
*
87+
* @param array|null $forward Optional dispatch data.
88+
*
8989
* @return void|false Returns <tt>false</tt> if the exception is dispatched to a specific error handler; otherwise
9090
* returns <tt>null</tt>.
91-
*/
92-
private function forward(Dispatcher $dispatcher, array $forward = null)
93-
{
94-
if ($forward !== null) {
95-
$dispatcher->forward($forward);
91+
*/
92+
private function forward(Dispatcher $dispatcher, array $forward = null)
93+
{
94+
if ($forward !== null) {
95+
$dispatcher->forward($forward);
9696

97-
return false;
98-
}
99-
}
97+
return false;
98+
}
99+
}
100100
}

0 commit comments

Comments
 (0)