Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace App\Config\Demo;
- use App\Config\InstansiConfig as Base;
- class InstansiConfig extends Base
- {
- public int $kode = 1;
- public string $domain = 'demo';
- public int|null $kPropinsi = 201;
- public int|null $kKota = 20102;
- public string $timezonaSuffix = 'WIB';
- public string $timezonaName = 'Asia/Jakarta';
- public int $timezonaOffset = 7;
- public array $jenjangs = [
- 1 => [
- 'asal' => 2,
- 'tujuan' => [3],
- ],
- 2 => [
- 'asal' => 4,
- 'tujuan' => [5],
- ],
- 3 => [
- 'asal' => 4,
- 'tujuan' => [6],
- ],
- ];
- public array $jalurs = [
- 1 => [
- 1, 2, 3,
- ],
- 2 => [
- 1,
- ],
- 3 => [
- 1,
- ],
- ];
- public array $labelTahaps = [
- 1 => [
- 1 => [
- 1 => 'Tahap 1',
- ],
- 2 => [
- 1 => 'Tahap 1',
- ],
- 3 => [
- 1 => 'Tahap 1',
- ],
- ],
- 2 => [
- 1 => [
- 1 => 'Tahap 1',
- ],
- ],
- 3 => [
- 1 => [
- 1 => 'Tahap 1',
- ],
- ],
- ];
- public int $tahun = 2024;
- public array $urutanSeleksi = [];
- }
Advertisement
Add Comment
Please, Sign In to add comment