mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
16 lines
209 B
PHP
16 lines
209 B
PHP
<?php
|
|
|
|
namespace App\Grills;
|
|
|
|
class Grill {
|
|
|
|
private $path;
|
|
|
|
public function __construct($path) {
|
|
$this->path = $path;
|
|
}
|
|
|
|
public function getPath() {
|
|
return $this->path;
|
|
}
|
|
} |