File "solution-provider.stub"

Full Path: /home/fundopuh/trader.fxex.org/vendor/facade/ignition/src/Commands/stubs/solution-provider.stub
File size: 292 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace DummyNamespace;

use Facade\IgnitionContracts\HasSolutionsForThrowable;

class DummyClass implements HasSolutionsForThrowable
{
    public function canSolve(): bool
    {
        return false;
    }

    public function getSolutions(): array
    {
        return [];
    }
}