问题:在 PostController.php 中的第 4 行找不到类 PostRepostioryInterface 或在修补命名空间时我什至找不到类 App\Models\Interfaces\PostRepositoryInterface
问题:如何在 laravel 4 中注册命名空间?我需要做什么才能让 L4 识别此命名空间中的类/接口?
Larave 3 在 ClassLoader 中有一个 $namespaces 静态对象,您可以在其中添加命名空间
Autoloader::namespaces(array(
'App\Models\Interfaces' => path('app').'models/interfaces',
));
我不确定我是否对 laravel 3 有此权利,但无论哪种方式,Laravel 4 中都不存在 AutoLoader 并且 ClassLoader 存在,但 Laravel 4 中的 ClassLoader 中不存在方法命名空间。
我看过这个,但如果不以某种方式注册命名空间,它似乎不起作用。 在 Laravel 4 中使用命名空间
示例结构:
app/models/interfaces
PostRepostitoryInterface.php
app/models/repositories
EloquentPostRepository.php
namespaces:
App\Models\Repositories;
App\Models\Interfaces;
文件:
PostRepositoryInterface.php
<?php namespace App\Models\Interfaces;
interface PostRepositoryInterface {
public function all();
public function find($id);
public function store($data);
}
EloquentPostRepository.php
<?php namespace App\Models\Repositories;
use App\Models\Interfaces\PostRepositoryInterface;
class EloquentPostRepository implements PostRepositoryInterface {
public function all()
{
return Post::all();
}
public function find($id)
{
return Post::find($id);
}
public function store($data)
{
return Post::save($data);
}
}
PostController.php
<?php
use App\Models\Interfaces\PostRepositoryInterface;
class PostsController extends BaseController {
public function __construct( PostRepositoryInterface $posts )
{
$this->posts = $posts;
}
谢谢