Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
45
vendor/doctrine/rst-parser/lib/Event/BuildEvent.php
vendored
Normal file
45
vendor/doctrine/rst-parser/lib/Event/BuildEvent.php
vendored
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Doctrine\RST\Event;
|
||||
|
||||
use Doctrine\Common\EventArgs;
|
||||
use Doctrine\RST\Builder;
|
||||
|
||||
abstract class BuildEvent extends EventArgs
|
||||
{
|
||||
/** @var Builder */
|
||||
private $builder;
|
||||
|
||||
/** @var string */
|
||||
private $directory;
|
||||
|
||||
/** @var string */
|
||||
private $targetDirectory;
|
||||
|
||||
public function __construct(
|
||||
Builder $builder,
|
||||
string $directory,
|
||||
string $targetDirectory
|
||||
) {
|
||||
$this->builder = $builder;
|
||||
$this->directory = $directory;
|
||||
$this->targetDirectory = $targetDirectory;
|
||||
}
|
||||
|
||||
public function getBuilder(): Builder
|
||||
{
|
||||
return $this->builder;
|
||||
}
|
||||
|
||||
public function getDirectory(): string
|
||||
{
|
||||
return $this->directory;
|
||||
}
|
||||
|
||||
public function getTargetDirectory(): string
|
||||
{
|
||||
return $this->targetDirectory;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue