proxitok/app/Models/ErrorTemplate.php

12 lines
218 B
PHP
Raw Normal View History

2022-02-05 23:58:30 +00:00
<?php
namespace App\Models;
class ErrorTemplate extends BaseTemplate {
public object $error;
function __construct(object $error) {
parent::__construct('Error');
$this->error = $error;
}
}