I have just started digging into PHP OOPs concept. For this I have created a Class and an Interface in the same file. Everything works well till this moment. Further I started refactoring my code and separated both Class and Interface to their respective files. After this I am getting below error:
Fatal error: Interface 'TaskInterface' not found in E:\www\project\oop\Tasks.php on line 4
Below line solve that error, however I need a way to resolve it through Composer and Namespace.
require 'TaskInterface.php';
Both of the files are under same directory level.
Class Tasks: (Tasks.php)
use App\TaskInterface;
require_once 'vendor/autoload.php';
class Tasks implements TaskInterface {
public function create()
{
var_dump('created');
}
}
$obj = new Tasks();
echo $obj->create();
Interface Task: (TaskInterface.php)
namespace App;
interface TaskInterface {
public function create();
}
Here is composer.json code to autoload class/interface:
{
"name" : "OOP",
"autoload": {
"psr-4": {
"App\\": "project/oop/"
}
}
}
Project URL: http://localhost/project/oop/tasks.php
Directory Structure:
|project
|oop
-|vendor
-|composer (containing all auto generated files)
-|autoload.php
-|composer.json
-|TaskInterface.php
-|Tasks.php