Commit 35d436ef authored by Pavel Linhart's avatar Pavel Linhart
Browse files

Add missing files...

No related merge requests found
Showing with 61 additions and 0 deletions
+61 -0
<?php
declare(strict_types = 1);
namespace WebLoader;
class File
{
/**
* @var string
*/
protected $file;
/**
* @var int
*/
protected $lastModified = null;
/**
* @var array
*/
protected $sourceFiles;
public function __construct(
string $file,
?int $lastModified,
array $sourceFiles
)
{
$this->file = $file;
$this->lastModified = $lastModified;
$this->sourceFiles = $sourceFiles;
}
public function getFile(): string
{
return $this->file;
}
public function getLastModified(): ?int
{
return $this->lastModified;
}
public function getSourceFiles(): array
{
return $this->sourceFiles;
}
}
webloader:
jsDefaults:
absoluteUrl: false
\ No newline at end of file
webloader:
jsDefaults:
absoluteUrl: true
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment