使用中的Symfony 1.4命名空间自动加载的类(Autoload classes using n

2019-10-19 10:45发布

我想包括phpleague的OAuth客户端( https://github.com/thephpleague/oauth2-client在我的symfony(1.4)项目),但它使用的命名空间无处不在,让我枕着一个解决方法,并使用Symfony2的通用上来自动加载磁带机,用这段代码在我projectConfiguration.class.php在一起

 public function namespacesClassLoader() 
 {
   $loader = new UniversalClassLoader();
   $loader->registerNamespaces(array(
        'League' => __DIR__ . '/../lib/League',
    ));
   $loader->register();
 }

该函数被调用的设置()内。 当我尝试实例化这样的提供商,此项不工作

$provider = new League\OAuth2\Client\Provider\Google(array(
            'clientId' => '',
            'clientSecret' => '',
            'redirectUri' => $redirect_url
        ));

有任何想法吗 ?

Answer 1:

因此,这是固定的很久以前的事,但对于任何有兴趣我只是需要改变这种

$loader->registerNamespaces(array(
    'League' => __DIR__ . '/../lib/League',
));

$loader->registerNamespaces(array(
    'League' => __DIR__ . '/../lib',
));


文章来源: Autoload classes using namespace within Symfony 1.4