Files
2026-05-30 01:11:35 -04:00

14 lines
297 B
PHP

<?php
declare(strict_types=1);
use App\Domain\SchoolCore\Context\SchoolContext;
use App\Domain\SchoolCore\Context\SchoolContextStore;
if (! function_exists('school_context')) {
function school_context(): SchoolContext
{
return app(SchoolContextStore::class)->current();
}
}