14 lines
193 B
PHP
14 lines
193 B
PHP
<?php
|
|
|
|
namespace App\Build;
|
|
|
|
class File
|
|
{
|
|
public string $name;
|
|
public string $slug;
|
|
public string $title;
|
|
public function __construct(
|
|
protected string $path
|
|
) {}
|
|
}
|