0 follower

Class Yiisoft\YiiDevTool\App\Component\Package\PackageError

InheritanceYiisoft\YiiDevTool\App\Component\Package\PackageError

Method Details

Hide inherited methods

__construct() public method

public __construct( Yiisoft\YiiDevTool\App\Component\Package\Package $package, string $message, string $during ): mixed
$package Yiisoft\YiiDevTool\App\Component\Package\Package
$message string
$during string

                public function __construct(private Package $package, private string $message, private string $during)
{
}

            
getDuring() public method

public getDuring( ): string

                public function getDuring(): string
{
    return $this->during;
}

            
getMessage() public method

public getMessage( ): string

                public function getMessage(): string
{
    return $this->message;
}

            
getPackage() public method

public getPackage( ): Yiisoft\YiiDevTool\App\Component\Package\Package

                public function getPackage(): Package
{
    return $this->package;
}