at path:ROOT / clients / vendor / punic / punic / punic.php
run:R W Run
DIR
2026-04-08 19:35:38
R W Run
DIR
2026-04-08 19:42:26
R W Run
8.12 KB
2026-04-08 19:30:09
R W Run
9.93 KB
2026-04-08 19:30:09
R W Run
1.2 KB
2026-04-08 19:30:10
R W Run
1.24 KB
2026-04-08 19:30:10
R W Run
2.86 KB
2026-04-08 19:30:09
R W Run
342 By
2026-04-08 19:30:09
R W Run
error_log
📄punic.php
1<?php
2
3spl_autoload_register(
4 function ($class) {
5 if (strpos($class, 'Punic\\') !== 0) {
6 return;
7 }
8 $file = __DIR__.DIRECTORY_SEPARATOR.'src'.str_replace('\\', DIRECTORY_SEPARATOR, substr($class, strlen('Punic'))).'.php';
9 if (is_file($file)) {
10 require_once $file;
11 }
12 }
13);
14