File "InstallationDetectorInterface.php"

Full path: /home/argothem/www/organecyberpresse/vendor/spip-league/kernel/src/InstallationDetectorInterface.php
File size: 279 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

declare(strict_types=1);

namespace SpipLeague\Component\Kernel;

interface InstallationDetectorInterface
{
    public static function fromDir(string $directory): self;

    public function getWay(): string;

    public function getDir(string $dir = 'project'): string;
}