mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-21 22:06:04 +02:00
remove Interface-Suffix
This commit is contained in:
@@ -6,20 +6,20 @@ namespace DesignPatterns\Structural\Facade;
|
||||
class Facade
|
||||
{
|
||||
/**
|
||||
* @var OsInterface
|
||||
* @var OperatingSystem
|
||||
*/
|
||||
private $os;
|
||||
|
||||
/**
|
||||
* @var BiosInterface
|
||||
* @var Bios
|
||||
*/
|
||||
private $bios;
|
||||
|
||||
/**
|
||||
* @param BiosInterface $bios
|
||||
* @param OsInterface $os
|
||||
* @param Bios $bios
|
||||
* @param OperatingSystem $os
|
||||
*/
|
||||
public function __construct(BiosInterface $bios, OsInterface $os)
|
||||
public function __construct(Bios $bios, OperatingSystem $os)
|
||||
{
|
||||
$this->bios = $bios;
|
||||
$this->os = $os;
|
||||
|
Reference in New Issue
Block a user