我正在使用 SymfonyConsole 包编写一个简单的项目,但是我找不到类的异常:
PHP Fatal error: Uncaught Error: Class 'Project\ExtractLinkCommand' not found in /home/PhpstormProjects/RVLE/RVLE.php:9
Stack trace:
#0 {main}
thrown in /home/PhpstormProjects/RVLE/RVLE.php on line 9
我无法找到问题,有人说自动加载器不是标准的,你应该自己编写。
我还更新了作曲家并运行了composer dump-autoload
。
以下是我的文件 - >
RVLE.php :
#!/usr/bin/env php
<?php
require 'vendor/autoload.php';
use Project\ExtractLinkCommand;
use Symfony\Component\Console\Application;
$app = new Application('RVLE' , '1.0');
$app->add(new ExtractLinkCommand());
$app->run();
extractCommand.php :
<?php namespace Project;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class ExtractLinkCommand extends Command
{
public function configure()
{
$this->setName('getLinks')
->setDescription('extract all available video links for given page url')
->addArgument('url', InputArgument::REQUIRED, 'page link');
}
public function execute(InputInterface $input, OutputInterface $output)
{
$url = $input->getArgument('url');
$output->writeln($url);
}
}
composer.json :
{
"require": {
"symfony/console": "^3.3"
},
"autoload": {
"psr-4": {
"Project\\": "src/"
}
}
}
这是我的项目结构:
.
├── composer.json
├── composer.lock
├── RVLE.php
├── src
│ └── extractCommand.php
└── vendor
├── autoload.php
├── bin
├── composer
├── psr
└── symfony
答案 0 :(得分:4)
我认为您需要将您的文件名与您的班级名称匹配,因此它应该是ExtractLinkCommand.php
,否则编辑器自动加载器将无法找到它。
答案 1 :(得分:1)
PSR-4仅适用于名称空间。它从完整的类名中删除了composer.json中给出的命名空间前缀,并将余数转换为路径,在末尾添加“.php”,并在给定的路径中搜索。类myNamespace \ myClass和“psr-4”:{“myNamespace \”:“src”}将尝试加载src / myClass.php