Concrete class passed instead of a class with implemented interface php

393 Views Asked by At

I can not figure our why I get this error: Argument 1 passed to App\src\Manager::manage() must be an instance of App\src\ManageableInterface, instance of App\src\Worker given. I Coded to the interface ManageableInterface not to the conrete class but it does not work. Here is the code:

ManageableInterface.php

<?php namespace App\src\interfaces;

interface ManageableInterface
{
  public function manage();
}

SleepableInterface.php

<?php namespace App\src\interfaces;

interface SleepableInterface
{
  public function sleep();
}

WorkableInterface.php

<?php namespace App\src\interfaces;

interface WorkableInterface
{
 public function work();
}

Worker.php

<?php namespace App\src;

use App\src\interfaces\{WorkableInterface, SleepableInterface, ManageableInterface};

class Worker implements WorkableInterface, SleepableInterface, ManageableInterface
{
  public function work()
  {
    var_dump('Worker is working.');
  }


  public function sleep()
  {
    var_dump('Worker is sleeping.');
  }


  public function manage()
  {
    $this->work();
    $this->sleep();
  }

}

Manager.php

<?php namespace App\src;

class Manager
{
  public function manage(ManageableInterface $worker)
  {
    $worker->manage();
  }
 }

index.php

<?php require 'vendor/autoload.php';

use App\src\{Manager, Worker};

$worker = new Worker();

$manager = new Manager();
$manager->manage($worker);
0

There are 0 best solutions below