Skip to content

Commit

Permalink
CS Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Nov 12, 2018
1 parent 136a3f5 commit ce3bfa0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/OrientatedItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class OrientatedItem
*/
protected $depth;


/**
* @var float[]
*/
Expand Down Expand Up @@ -114,7 +113,7 @@ public function getSurfaceFootprint(): int
*/
public function getTippingPoint(): float
{
$cacheKey = $this->width . '|' . $this->length . '|' . $this->depth;
$cacheKey = $this->width . '|' . $this->length . '|' . $this->depth;

if (isset(static::$tippingPointCache[$cacheKey])) {
$tippingPoint = static::$tippingPointCache[$cacheKey];
Expand Down

0 comments on commit ce3bfa0

Please sign in to comment.