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