misuzu/src/Http/Handlers/Handler.php

13 lines
231 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu\Http\Handlers;
2023-07-15 02:05:49 +00:00
use Misuzu\MisuzuContext;
2022-09-13 13:14:49 +00:00
abstract class Handler {
2023-07-15 02:05:49 +00:00
protected MisuzuContext $context;
public function __construct(MisuzuContext $context) {
$this->context = $context;
2022-09-13 13:14:49 +00:00
}
}