mirror of
https://github.com/pablouser1/ProxiTok.git
synced 2024-12-06 19:27:30 +01:00
8816f4a1a1
Added Discover
12 lines
218 B
PHP
12 lines
218 B
PHP
<?php
|
|
namespace App\Models;
|
|
|
|
class ErrorTemplate extends BaseTemplate {
|
|
public object $error;
|
|
|
|
function __construct(object $error) {
|
|
parent::__construct('Error');
|
|
$this->error = $error;
|
|
}
|
|
}
|