14 lines
297 B
PHP
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();
|
|
}
|
|
}
|