Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3130'
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/FilterChainTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function testFiltersAreExecutedAccordingToPriority()
public function testAllowsConnectingArbitraryCallbacks()
{
$chain = new FilterChain();
$chain->attach(function($value) {
$chain->attach(function ($value) {
return strtolower($value);
});
$value = 'AbC';
Expand Down Expand Up @@ -118,7 +118,7 @@ protected function getChainConfig()
return array(
'callbacks' => array(
array('callback' => __CLASS__ . '::staticUcaseFilter'),
array('priority' => 10000, 'callback' => function($value) {
array('priority' => 10000, 'callback' => function ($value) {
return trim($value);
}),
),
Expand Down

0 comments on commit aeda378

Please sign in to comment.