Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Hiroki committed Oct 2, 2021
1 parent 595565c commit 0fe27fe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/creational/prototype/Cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ public function getProducts(): array
{
return $this->products;
}
}
}
2 changes: 1 addition & 1 deletion app/creational/prototype/Laptop.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ public function __construct()
$this->id = 2;
$this->name = 'Smartphone';
}
}
}
2 changes: 1 addition & 1 deletion app/creational/prototype/ProductPrototype.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ public function getName(): string
{
return $this->name;
}
}
}
2 changes: 1 addition & 1 deletion app/creational/prototype/Smartphone.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ public function __construct()
$this->id = 1;
$this->name = 'Smartphone';
}
}
}

0 comments on commit 0fe27fe

Please sign in to comment.