Skip to content

Commit

Permalink
PHP CS fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bukashk0zzz committed Oct 23, 2017
1 parent 2407efd commit 6e2aaf0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
/vendor/
.php_cs.cache
phpunit.xml
composer.lock
1 change: 0 additions & 1 deletion .php_cs.cache

This file was deleted.

6 changes: 4 additions & 2 deletions src/Model/Delivery.php
Expand Up @@ -41,6 +41,7 @@ public function getCost()

/**
* @param int $cost
*
* @return Delivery
*/
public function setCost($cost)
Expand All @@ -60,6 +61,7 @@ public function getDays()

/**
* @param int $days
*
* @return Delivery
*/
public function setDays($days)
Expand All @@ -70,15 +72,15 @@ public function setDays($days)
}

/**
* @return string|null
* @return int|null
*/
public function getOrderBefore()
{
return $this->orderBefore;
}

/**
* @param string|null $orderBefore
* @param int|null $orderBefore
*
* @return Delivery
*/
Expand Down

0 comments on commit 6e2aaf0

Please sign in to comment.