Skip to content

Commit

Permalink
Cleaned with php_cs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-KM committed Aug 26, 2018
1 parent c5e17f0 commit 3e907c7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ php:
- 5.6
- 7.0
- 7.1
- 7.2

sudo: false

Expand Down Expand Up @@ -32,4 +33,6 @@ before_script:
- composer install
- cd test

script: ../../../vendor/bin/phpunit
script:
- ../../../vendor/bin/phpunit
- ../../../vendor/bin/php-cs-fixer fix -v --dry-run --using-cache=no --allow-risky=no
1 change: 0 additions & 1 deletion src/Controller/IndexController.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ class IndexController extends AbstractActionController
protected $page;

/**
*
* @var SearchIndexRepresentation
*/
protected $index;
Expand Down
2 changes: 1 addition & 1 deletion src/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public function addDateRangeFilter($name, $start, $end)
{
$this->dateRangeFilters[$name][] = [
'start' => $start,
'end' => $end
'end' => $end,
];
}

Expand Down

0 comments on commit 3e907c7

Please sign in to comment.