Issues (56)

src/Deploy/DeployInterface.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace LCI\MODX\Orchestrator\Deploy;
4
5
use modX;
0 ignored issues
show
The type modX was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
6
use Symfony\Component\Console\Command\Command;
7
use Symfony\Component\Console\Input\InputInterface;
8
use Symfony\Component\Console\Output\OutputInterface;
9
10
interface DeployInterface
11
{
12
    /**
13
     * DeployInterface constructor.
14
     * @param Command $application
15
     * @param modX $modx
16
     */
17
    public function __construct(Command $application, modX $modx);
18
19
    /**
20
     * @param OutputInterface $output
21
     */
22
    public function describe(OutputInterface $output);
23
24
    /**
25
     * @param InputInterface $input
26
     * @param OutputInterface $output
27
     */
28
    public function run(InputInterface $input, OutputInterface $output);
29
}
30