This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
.phpstorm.meta.php
1160 lines (1150 loc) · 97.4 KB
/
.phpstorm.meta.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* PHPStorm auto-complete metadata. See the scripts/generate-phpstorm-metadata.php file for more information
*/
namespace PHPSTORM_META {
override( \Kodekit\Library\ObjectInterface::getObject(0), // method signature //argument number is ALWAYS 0 now.
map( [
'manager' => \Kodekit\Library\ObjectManagerInterface::class,
'object.manager' => \Kodekit\Library\ObjectManagerInterface::class,
'lib:manager' => \Kodekit\Library\ObjectManagerInterface::class,
'lib:object.manager' => \Kodekit\Library\ObjectManagerInterface::class,
'request' => \Kodekit\Library\DispatcherRequestInterface::class,
'lib:request' => \Kodekit\Library\DispatcherRequestInterface::class,
'response' => \Kodekit\Library\DispatcherResponseInterface::class,
'lib:response' => \Kodekit\Library\DispatcherResponseInterface::class,
'dispatcher' => \Kodekit\Library\DispatcherInterface::class,
'lib:dispatcher' => \Kodekit\Library\DispatcherInterface::class,
// Automatically generated by script:
'behavior.eventable' => \Kodekit\Library\BehaviorEventable::class,
'behavior.exception.handler' => \Kodekit\Library\BehaviorExceptionHandler::class,
'behavior.mixin' => \Kodekit\Library\BehaviorMixin::class,
'class.locator.component' => \Kodekit\Library\ClassLocatorComponent::class,
'class.locator.composer' => \Kodekit\Library\ClassLocatorComposer::class,
'class.locator.library' => \Kodekit\Library\ClassLocatorLibrary::class,
'class.locator.psr' => \Kodekit\Library\ClassLocatorPsr::class,
'class.registry' => \Kodekit\Library\ClassRegistry::class,
'class.registry.cache' => \Kodekit\Library\ClassRegistryCache::class,
'command' => \Kodekit\Library\Command::class,
'command.chain' => \Kodekit\Library\CommandChain::class,
'command.exception.callback' => \Kodekit\Library\CommandExceptionCallback::class,
'command.exception.handler' => \Kodekit\Library\CommandExceptionHandler::class,
'command.mixin' => \Kodekit\Library\CommandMixin::class,
'controller.behavior.commandable' => \Kodekit\Library\ControllerBehaviorCommandable::class,
'controller.behavior.editable' => \Kodekit\Library\ControllerBehaviorEditable::class,
'controller.behavior.localizable' => \Kodekit\Library\ControllerBehaviorLocalizable::class,
'controller.behavior.permissible' => \Kodekit\Library\ControllerBehaviorPermissible::class,
'controller.behavior.persistable' => \Kodekit\Library\ControllerBehaviorPersistable::class,
'controller.context' => \Kodekit\Library\ControllerContext::class,
'controller.context.model' => \Kodekit\Library\ControllerContextModel::class,
'controller.default' => \Kodekit\Library\ControllerDefault::class,
'controller.exception.action.failed' => \Kodekit\Library\ControllerExceptionActionFailed::class,
'controller.exception.action.not.implemented' => \Kodekit\Library\ControllerExceptionActionNotImplemented::class,
'controller.exception.format.invalid' => \Kodekit\Library\ControllerExceptionFormatInvalid::class,
'controller.exception.format.not.supported' => \Kodekit\Library\ControllerExceptionFormatNotSupported::class,
'controller.exception.rate.limit' => \Kodekit\Library\ControllerExceptionRateLimit::class,
'controller.exception.request.forbidden' => \Kodekit\Library\ControllerExceptionRequestForbidden::class,
'controller.exception.request.invalid' => \Kodekit\Library\ControllerExceptionRequestInvalid::class,
'controller.exception.request.not.authenticated' => \Kodekit\Library\ControllerExceptionRequestNotAuthenticated::class,
'controller.exception.request.not.authorized' => \Kodekit\Library\ControllerExceptionRequestNotAuthorized::class,
'controller.exception.resource.locked' => \Kodekit\Library\ControllerExceptionResourceLocked::class,
'controller.exception.resource.not.found' => \Kodekit\Library\ControllerExceptionResourceNotFound::class,
'controller.permission.default' => \Kodekit\Library\ControllerPermissionDefault::class,
'controller.request' => \Kodekit\Library\ControllerRequest::class,
'controller.response' => \Kodekit\Library\ControllerResponse::class,
'controller.toolbar.actionbar' => \Kodekit\Library\ControllerToolbarActionbar::class,
'controller.toolbar.command' => \Kodekit\Library\ControllerToolbarCommand::class,
'controller.toolbar.default' => \Kodekit\Library\ControllerToolbarDefault::class,
'controller.toolbar.iterator.recursive' => \Kodekit\Library\ControllerToolbarIteratorRecursive::class,
'database' => \Kodekit\Library\Database::class,
'database.behavior.accessible' => \Kodekit\Library\DatabaseBehaviorAccessible::class,
'database.behavior.creatable' => \Kodekit\Library\DatabaseBehaviorCreatable::class,
'database.behavior.hittable' => \Kodekit\Library\DatabaseBehaviorHittable::class,
'database.behavior.identifiable' => \Kodekit\Library\DatabaseBehaviorIdentifiable::class,
'database.behavior.lockable' => \Kodekit\Library\DatabaseBehaviorLockable::class,
'database.behavior.modifiable' => \Kodekit\Library\DatabaseBehaviorModifiable::class,
'database.behavior.orderable' => \Kodekit\Library\DatabaseBehaviorOrderable::class,
'database.behavior.parameterizable' => \Kodekit\Library\DatabaseBehaviorParameterizable::class,
'database.behavior.recursable' => \Kodekit\Library\DatabaseBehaviorRecursable::class,
'database.behavior.sluggable' => \Kodekit\Library\DatabaseBehaviorSluggable::class,
'database.context' => \Kodekit\Library\DatabaseContext::class,
'database.context.driver' => \Kodekit\Library\DatabaseContextDriver::class,
'database.context.table' => \Kodekit\Library\DatabaseContextTable::class,
'database.driver.mysqli' => \Kodekit\Library\DatabaseDriverMysqli::class,
'database.iterator.recursive' => \Kodekit\Library\DatabaseIteratorRecursive::class,
'database.query.delete' => \Kodekit\Library\DatabaseQueryDelete::class,
'database.query.insert' => \Kodekit\Library\DatabaseQueryInsert::class,
'database.query.parameters' => \Kodekit\Library\DatabaseQueryParameters::class,
'database.query.select' => \Kodekit\Library\DatabaseQuerySelect::class,
'database.query.show' => \Kodekit\Library\DatabaseQueryShow::class,
'database.query.update' => \Kodekit\Library\DatabaseQueryUpdate::class,
'database.row.default' => \Kodekit\Library\DatabaseRowDefault::class,
'database.rowset.default' => \Kodekit\Library\DatabaseRowsetDefault::class,
'database.schema.column' => \Kodekit\Library\DatabaseSchemaColumn::class,
'database.schema.table' => \Kodekit\Library\DatabaseSchemaTable::class,
'database.table.default' => \Kodekit\Library\DatabaseTableDefault::class,
'date' => \Kodekit\Library\Date::class,
'dispatcher' => \Kodekit\Library\Dispatcher::class,
'dispatcher.authenticator.basic' => \Kodekit\Library\DispatcherAuthenticatorBasic::class,
'dispatcher.authenticator.cookie' => \Kodekit\Library\DispatcherAuthenticatorCookie::class,
'dispatcher.authenticator.origin' => \Kodekit\Library\DispatcherAuthenticatorOrigin::class,
'dispatcher.authenticator.jwt' => \Kodekit\Library\DispatcherAuthenticatorJwt::class,
'dispatcher.behavior.authenticatable' => \Kodekit\Library\DispatcherBehaviorAuthenticatable::class,
'dispatcher.behavior.decoratable' => \Kodekit\Library\DispatcherBehaviorDecoratable::class,
'dispatcher.behavior.limitable' => \Kodekit\Library\DispatcherBehaviorLimitable::class,
'dispatcher.behavior.localizable' => \Kodekit\Library\DispatcherBehaviorLocalizable::class,
'dispatcher.behavior.permissible' => \Kodekit\Library\DispatcherBehaviorPermissible::class,
'dispatcher.behavior.resettable' => \Kodekit\Library\DispatcherBehaviorResettable::class,
'dispatcher.behavior.routable' => \Kodekit\Library\DispatcherBehaviorRoutable::class,
'dispatcher.context' => \Kodekit\Library\DispatcherContext::class,
'dispatcher.default' => \Kodekit\Library\DispatcherDefault::class,
'dispatcher.exception.method.not.allowed' => \Kodekit\Library\DispatcherExceptionMethodNotAllowed::class,
'dispatcher.fragment' => \Kodekit\Library\DispatcherFragment::class,
'dispatcher.permission.default' => \Kodekit\Library\DispatcherPermissionDefault::class,
'dispatcher.permission.fragment' => \Kodekit\Library\DispatcherPermissionFragment::class,
'dispatcher.request' => \Kodekit\Library\DispatcherRequest::class,
'dispatcher.request.transport.data' => \Kodekit\Library\DispatcherRequestTransportData::class,
'dispatcher.request.transport.headers' => \Kodekit\Library\DispatcherRequestTransportHeaders::class,
'dispatcher.request.transport.server' => \Kodekit\Library\DispatcherRequestTransportServer::class,
'dispatcher.response' => \Kodekit\Library\DispatcherResponse::class,
'dispatcher.response.transport.http' => \Kodekit\Library\DispatcherResponseTransportHttp::class,
'dispatcher.response.transport.json' => \Kodekit\Library\DispatcherResponseTransportJson::class,
'dispatcher.response.transport.redirect' => \Kodekit\Library\DispatcherResponseTransportRedirect::class,
'dispatcher.response.transport.sendfile' => \Kodekit\Library\DispatcherResponseTransportSendfile::class,
'dispatcher.response.transport.stream' => \Kodekit\Library\DispatcherResponseTransportStream::class,
'dispatcher.router' => \Kodekit\Library\DispatcherRouter::class,
'dispatcher.router.route' => \Kodekit\Library\DispatcherRouterRoute::class,
'event' => \Kodekit\Library\Event::class,
'event.mixin' => \Kodekit\Library\EventMixin::class,
'event.publisher' => \Kodekit\Library\EventPublisher::class,
'event.publisher.profiler' => \Kodekit\Library\EventPublisherProfiler::class,
'exception.error' => \Kodekit\Library\ExceptionError::class,
'exception.failure' => \Kodekit\Library\ExceptionFailure::class,
'exception.handler' => \Kodekit\Library\ExceptionHandler::class,
'exception.handler.abstract' => \Kodekit\Library\ExceptionHandlerAbstract::class,
'filesystem.locator.component' => \Kodekit\Library\FilesystemLocatorComponent::class,
'filesystem.locator.factory' => \Kodekit\Library\FilesystemLocatorFactory::class,
'filesystem.locator.file' => \Kodekit\Library\FilesystemLocatorFile::class,
'filesystem.mimetype' => \Kodekit\Library\FilesystemMimetype::class,
'filesystem.mimetype.extension' => \Kodekit\Library\FilesystemMimetypeExtension::class,
'filesystem.mimetype.fileinfo' => \Kodekit\Library\FilesystemMimetypeFileinfo::class,
'filesystem.stream.adapter' => \Kodekit\Library\FilesystemStreamAdapter::class,
'filesystem.stream.buffer' => \Kodekit\Library\FilesystemStreamBuffer::class,
'filesystem.stream.default' => \Kodekit\Library\FilesystemStreamDefault::class,
'filesystem.stream.factory' => \Kodekit\Library\FilesystemStreamFactory::class,
'filesystem.stream.filter.whitespace' => \Kodekit\Library\FilesystemStreamFilterWhitespace::class,
'filter.alnum' => \Kodekit\Library\FilterAlnum::class,
'filter.alpha' => \Kodekit\Library\FilterAlpha::class,
'filter.ascii' => \Kodekit\Library\FilterAscii::class,
'filter.base64' => \Kodekit\Library\FilterBase64::class,
'filter.boolean' => \Kodekit\Library\FilterBoolean::class,
'filter.chain' => \Kodekit\Library\FilterChain::class,
'filter.cmd' => \Kodekit\Library\FilterCmd::class,
'filter.date' => \Kodekit\Library\FilterDate::class,
'filter.digit' => \Kodekit\Library\FilterDigit::class,
'filter.dirname' => \Kodekit\Library\FilterDirname::class,
'filter.email' => \Kodekit\Library\FilterEmail::class,
'filter.factory' => \Kodekit\Library\FilterFactory::class,
'filter.filename' => \Kodekit\Library\FilterFilename::class,
'filter.float' => \Kodekit\Library\FilterFloat::class,
'filter.html' => \Kodekit\Library\FilterHtml::class,
'filter.identifier' => \Kodekit\Library\FilterIdentifier::class,
'filter.ini' => \Kodekit\Library\FilterIni::class,
'filter.int' => \Kodekit\Library\FilterInt::class,
'filter.ip' => \Kodekit\Library\FilterIp::class,
'filter.iterator' => \Kodekit\Library\FilterIterator::class,
'filter.json' => \Kodekit\Library\FilterJson::class,
'filter.lang' => \Kodekit\Library\FilterLang::class,
'filter.md5' => \Kodekit\Library\FilterMd5::class,
'filter.numeric' => \Kodekit\Library\FilterNumeric::class,
'filter.path' => \Kodekit\Library\FilterPath::class,
'filter.raw' => \Kodekit\Library\FilterRaw::class,
'filter.sha1' => \Kodekit\Library\FilterSha1::class,
'filter.slug' => \Kodekit\Library\FilterSlug::class,
'filter.string' => \Kodekit\Library\FilterString::class,
'filter.time' => \Kodekit\Library\FilterTime::class,
'filter.timestamp' => \Kodekit\Library\FilterTimestamp::class,
'filter.trim' => \Kodekit\Library\FilterTrim::class,
'filter.url' => \Kodekit\Library\FilterUrl::class,
'filter.word' => \Kodekit\Library\FilterWord::class,
'filter.xml' => \Kodekit\Library\FilterXml::class,
'filter.yaml' => \Kodekit\Library\FilterYaml::class,
'http.cookie' => \Kodekit\Library\HttpCookie::class,
'http.exception.bad.request' => \Kodekit\Library\HttpExceptionBadRequest::class,
'http.exception.conflict' => \Kodekit\Library\HttpExceptionConflict::class,
'http.exception.forbidden' => \Kodekit\Library\HttpExceptionForbidden::class,
'http.exception.method.not.allowed' => \Kodekit\Library\HttpExceptionMethodNotAllowed::class,
'http.exception.not.acceptable' => \Kodekit\Library\HttpExceptionNotAcceptable::class,
'http.exception.not.found' => \Kodekit\Library\HttpExceptionNotFound::class,
'http.exception.not.implemented' => \Kodekit\Library\HttpExceptionNotImplemented::class,
'http.exception.range.not.satisfied' => \Kodekit\Library\HttpExceptionRangeNotSatisfied::class,
'http.exception.too.many.requests' => \Kodekit\Library\HttpExceptionTooManyRequests::class,
'http.exception.unauthorized' => \Kodekit\Library\HttpExceptionUnauthorized::class,
'http.exception.unsupported.media.type' => \Kodekit\Library\HttpExceptionUnsupportedMediaType::class,
'http.message.headers' => \Kodekit\Library\HttpMessageHeaders::class,
'http.message.parameters' => \Kodekit\Library\HttpMessageParameters::class,
'http.request' => \Kodekit\Library\HttpRequest::class,
'http.request.headers' => \Kodekit\Library\HttpRequestHeaders::class,
'http.response' => \Kodekit\Library\HttpResponse::class,
'http.response.headers' => \Kodekit\Library\HttpResponseHeaders::class,
'http.token' => \Kodekit\Library\HttpToken::class,
'http.url' => \Kodekit\Library\HttpUrl::class,
'lib:behavior.eventable' => \Kodekit\Library\BehaviorEventable::class,
'lib:behavior.exception.handler' => \Kodekit\Library\BehaviorExceptionHandler::class,
'lib:behavior.mixin' => \Kodekit\Library\BehaviorMixin::class,
'lib:class.locator.component' => \Kodekit\Library\ClassLocatorComponent::class,
'lib:class.locator.composer' => \Kodekit\Library\ClassLocatorComposer::class,
'lib:class.locator.library' => \Kodekit\Library\ClassLocatorLibrary::class,
'lib:class.locator.psr' => \Kodekit\Library\ClassLocatorPsr::class,
'lib:class.registry' => \Kodekit\Library\ClassRegistry::class,
'lib:class.registry.cache' => \Kodekit\Library\ClassRegistryCache::class,
'lib:command' => \Kodekit\Library\Command::class,
'lib:command.chain' => \Kodekit\Library\CommandChain::class,
'lib:command.exception.callback' => \Kodekit\Library\CommandExceptionCallback::class,
'lib:command.exception.handler' => \Kodekit\Library\CommandExceptionHandler::class,
'lib:command.mixin' => \Kodekit\Library\CommandMixin::class,
'lib:controller.behavior.commandable' => \Kodekit\Library\ControllerBehaviorCommandable::class,
'lib:controller.behavior.editable' => \Kodekit\Library\ControllerBehaviorEditable::class,
'lib:controller.behavior.localizable' => \Kodekit\Library\ControllerBehaviorLocalizable::class,
'lib:controller.behavior.permissible' => \Kodekit\Library\ControllerBehaviorPermissible::class,
'lib:controller.behavior.persistable' => \Kodekit\Library\ControllerBehaviorPersistable::class,
'lib:controller.context' => \Kodekit\Library\ControllerContext::class,
'lib:controller.context.model' => \Kodekit\Library\ControllerContextModel::class,
'lib:controller.default' => \Kodekit\Library\ControllerDefault::class,
'lib:controller.exception.action.failed' => \Kodekit\Library\ControllerExceptionActionFailed::class,
'lib:controller.exception.action.not.implemented' => \Kodekit\Library\ControllerExceptionActionNotImplemented::class,
'lib:controller.exception.format.invalid' => \Kodekit\Library\ControllerExceptionFormatInvalid::class,
'lib:controller.exception.format.not.supported' => \Kodekit\Library\ControllerExceptionFormatNotSupported::class,
'lib:controller.exception.rate.limit' => \Kodekit\Library\ControllerExceptionRateLimit::class,
'lib:controller.exception.request.forbidden' => \Kodekit\Library\ControllerExceptionRequestForbidden::class,
'lib:controller.exception.request.invalid' => \Kodekit\Library\ControllerExceptionRequestInvalid::class,
'lib:controller.exception.request.not.authenticated' => \Kodekit\Library\ControllerExceptionRequestNotAuthenticated::class,
'lib:controller.exception.request.not.authorized' => \Kodekit\Library\ControllerExceptionRequestNotAuthorized::class,
'lib:controller.exception.resource.locked' => \Kodekit\Library\ControllerExceptionResourceLocked::class,
'lib:controller.exception.resource.not.found' => \Kodekit\Library\ControllerExceptionResourceNotFound::class,
'lib:controller.permission.default' => \Kodekit\Library\ControllerPermissionDefault::class,
'lib:controller.request' => \Kodekit\Library\ControllerRequest::class,
'lib:controller.response' => \Kodekit\Library\ControllerResponse::class,
'lib:controller.toolbar.actionbar' => \Kodekit\Library\ControllerToolbarActionbar::class,
'lib:controller.toolbar.command' => \Kodekit\Library\ControllerToolbarCommand::class,
'lib:controller.toolbar.default' => \Kodekit\Library\ControllerToolbarDefault::class,
'lib:controller.toolbar.iterator.recursive' => \Kodekit\Library\ControllerToolbarIteratorRecursive::class,
'lib:database' => \Kodekit\Library\Database::class,
'lib:database.behavior.accessible' => \Kodekit\Library\DatabaseBehaviorAccessible::class,
'lib:database.behavior.creatable' => \Kodekit\Library\DatabaseBehaviorCreatable::class,
'lib:database.behavior.hittable' => \Kodekit\Library\DatabaseBehaviorHittable::class,
'lib:database.behavior.identifiable' => \Kodekit\Library\DatabaseBehaviorIdentifiable::class,
'lib:database.behavior.lockable' => \Kodekit\Library\DatabaseBehaviorLockable::class,
'lib:database.behavior.modifiable' => \Kodekit\Library\DatabaseBehaviorModifiable::class,
'lib:database.behavior.orderable' => \Kodekit\Library\DatabaseBehaviorOrderable::class,
'lib:database.behavior.parameterizable' => \Kodekit\Library\DatabaseBehaviorParameterizable::class,
'lib:database.behavior.recursable' => \Kodekit\Library\DatabaseBehaviorRecursable::class,
'lib:database.behavior.sluggable' => \Kodekit\Library\DatabaseBehaviorSluggable::class,
'lib:database.context' => \Kodekit\Library\DatabaseContext::class,
'lib:database.context.driver' => \Kodekit\Library\DatabaseContextDriver::class,
'lib:database.context.table' => \Kodekit\Library\DatabaseContextTable::class,
'lib:database.driver.mysqli' => \Kodekit\Library\DatabaseDriverMysqli::class,
'lib:database.iterator.recursive' => \Kodekit\Library\DatabaseIteratorRecursive::class,
'lib:database.query.delete' => \Kodekit\Library\DatabaseQueryDelete::class,
'lib:database.query.insert' => \Kodekit\Library\DatabaseQueryInsert::class,
'lib:database.query.parameters' => \Kodekit\Library\DatabaseQueryParameters::class,
'lib:database.query.select' => \Kodekit\Library\DatabaseQuerySelect::class,
'lib:database.query.show' => \Kodekit\Library\DatabaseQueryShow::class,
'lib:database.query.update' => \Kodekit\Library\DatabaseQueryUpdate::class,
'lib:database.row.default' => \Kodekit\Library\DatabaseRowDefault::class,
'lib:database.rowset.default' => \Kodekit\Library\DatabaseRowsetDefault::class,
'lib:database.schema.column' => \Kodekit\Library\DatabaseSchemaColumn::class,
'lib:database.schema.table' => \Kodekit\Library\DatabaseSchemaTable::class,
'lib:database.table.default' => \Kodekit\Library\DatabaseTableDefault::class,
'lib:date' => \Kodekit\Library\Date::class,
'lib:dispatcher' => \Kodekit\Library\Dispatcher::class,
'lib:dispatcher.authenticator.basic' => \Kodekit\Library\DispatcherAuthenticatorBasic::class,
'lib:dispatcher.authenticator.cookie' => \Kodekit\Library\DispatcherAuthenticatorCookie::class,
'lib:dispatcher.authenticator.origin' => \Kodekit\Library\DispatcherAuthenticatorOrigin::class,
'lib:dispatcher.authenticator.jwt' => \Kodekit\Library\DispatcherAuthenticatorJwt::class,
'lib:dispatcher.behavior.authenticatable' => \Kodekit\Library\DispatcherBehaviorAuthenticatable::class,
'lib:dispatcher.behavior.decoratable' => \Kodekit\Library\DispatcherBehaviorDecoratable::class,
'lib:dispatcher.behavior.limitable' => \Kodekit\Library\DispatcherBehaviorLimitable::class,
'lib:dispatcher.behavior.localizable' => \Kodekit\Library\DispatcherBehaviorLocalizable::class,
'lib:dispatcher.behavior.permissible' => \Kodekit\Library\DispatcherBehaviorPermissible::class,
'lib:dispatcher.behavior.resettable' => \Kodekit\Library\DispatcherBehaviorResettable::class,
'lib:dispatcher.behavior.routable' => \Kodekit\Library\DispatcherBehaviorRoutable::class,
'lib:dispatcher.context' => \Kodekit\Library\DispatcherContext::class,
'lib:dispatcher.default' => \Kodekit\Library\DispatcherDefault::class,
'lib:dispatcher.exception.method.not.allowed' => \Kodekit\Library\DispatcherExceptionMethodNotAllowed::class,
'lib:dispatcher.fragment' => \Kodekit\Library\DispatcherFragment::class,
'lib:dispatcher.permission.default' => \Kodekit\Library\DispatcherPermissionDefault::class,
'lib:dispatcher.permission.fragment' => \Kodekit\Library\DispatcherPermissionFragment::class,
'lib:dispatcher.request' => \Kodekit\Library\DispatcherRequest::class,
'lib:dispatcher.request.transport.data' => \Kodekit\Library\DispatcherRequestTransportData::class,
'lib:dispatcher.request.transport.headers' => \Kodekit\Library\DispatcherRequestTransportHeaders::class,
'lib:dispatcher.request.transport.server' => \Kodekit\Library\DispatcherRequestTransportServer::class,
'lib:dispatcher.response' => \Kodekit\Library\DispatcherResponse::class,
'lib:dispatcher.response.transport.http' => \Kodekit\Library\DispatcherResponseTransportHttp::class,
'lib:dispatcher.response.transport.json' => \Kodekit\Library\DispatcherResponseTransportJson::class,
'lib:dispatcher.response.transport.redirect' => \Kodekit\Library\DispatcherResponseTransportRedirect::class,
'lib:dispatcher.response.transport.sendfile' => \Kodekit\Library\DispatcherResponseTransportSendfile::class,
'lib:dispatcher.response.transport.stream' => \Kodekit\Library\DispatcherResponseTransportStream::class,
'lib:dispatcher.router' => \Kodekit\Library\DispatcherRouter::class,
'lib:dispatcher.router.route' => \Kodekit\Library\DispatcherRouterRoute::class,
'lib:event' => \Kodekit\Library\Event::class,
'lib:event.mixin' => \Kodekit\Library\EventMixin::class,
'lib:event.publisher' => \Kodekit\Library\EventPublisher::class,
'lib:event.publisher.profiler' => \Kodekit\Library\EventPublisherProfiler::class,
'lib:exception.error' => \Kodekit\Library\ExceptionError::class,
'lib:exception.failure' => \Kodekit\Library\ExceptionFailure::class,
'lib:exception.handler' => \Kodekit\Library\ExceptionHandler::class,
'lib:exception.handler.abstract' => \Kodekit\Library\ExceptionHandlerAbstract::class,
'lib:filesystem.locator.component' => \Kodekit\Library\FilesystemLocatorComponent::class,
'lib:filesystem.locator.factory' => \Kodekit\Library\FilesystemLocatorFactory::class,
'lib:filesystem.locator.file' => \Kodekit\Library\FilesystemLocatorFile::class,
'lib:filesystem.mimetype' => \Kodekit\Library\FilesystemMimetype::class,
'lib:filesystem.mimetype.extension' => \Kodekit\Library\FilesystemMimetypeExtension::class,
'lib:filesystem.mimetype.fileinfo' => \Kodekit\Library\FilesystemMimetypeFileinfo::class,
'lib:filesystem.stream.adapter' => \Kodekit\Library\FilesystemStreamAdapter::class,
'lib:filesystem.stream.buffer' => \Kodekit\Library\FilesystemStreamBuffer::class,
'lib:filesystem.stream.default' => \Kodekit\Library\FilesystemStreamDefault::class,
'lib:filesystem.stream.factory' => \Kodekit\Library\FilesystemStreamFactory::class,
'lib:filesystem.stream.filter.whitespace' => \Kodekit\Library\FilesystemStreamFilterWhitespace::class,
'lib:filter.alnum' => \Kodekit\Library\FilterAlnum::class,
'lib:filter.alpha' => \Kodekit\Library\FilterAlpha::class,
'lib:filter.ascii' => \Kodekit\Library\FilterAscii::class,
'lib:filter.base64' => \Kodekit\Library\FilterBase64::class,
'lib:filter.boolean' => \Kodekit\Library\FilterBoolean::class,
'lib:filter.chain' => \Kodekit\Library\FilterChain::class,
'lib:filter.cmd' => \Kodekit\Library\FilterCmd::class,
'lib:filter.date' => \Kodekit\Library\FilterDate::class,
'lib:filter.digit' => \Kodekit\Library\FilterDigit::class,
'lib:filter.dirname' => \Kodekit\Library\FilterDirname::class,
'lib:filter.email' => \Kodekit\Library\FilterEmail::class,
'lib:filter.factory' => \Kodekit\Library\FilterFactory::class,
'lib:filter.filename' => \Kodekit\Library\FilterFilename::class,
'lib:filter.float' => \Kodekit\Library\FilterFloat::class,
'lib:filter.html' => \Kodekit\Library\FilterHtml::class,
'lib:filter.identifier' => \Kodekit\Library\FilterIdentifier::class,
'lib:filter.ini' => \Kodekit\Library\FilterIni::class,
'lib:filter.int' => \Kodekit\Library\FilterInt::class,
'lib:filter.ip' => \Kodekit\Library\FilterIp::class,
'lib:filter.iterator' => \Kodekit\Library\FilterIterator::class,
'lib:filter.json' => \Kodekit\Library\FilterJson::class,
'lib:filter.lang' => \Kodekit\Library\FilterLang::class,
'lib:filter.md5' => \Kodekit\Library\FilterMd5::class,
'lib:filter.numeric' => \Kodekit\Library\FilterNumeric::class,
'lib:filter.path' => \Kodekit\Library\FilterPath::class,
'lib:filter.raw' => \Kodekit\Library\FilterRaw::class,
'lib:filter.sha1' => \Kodekit\Library\FilterSha1::class,
'lib:filter.slug' => \Kodekit\Library\FilterSlug::class,
'lib:filter.string' => \Kodekit\Library\FilterString::class,
'lib:filter.time' => \Kodekit\Library\FilterTime::class,
'lib:filter.timestamp' => \Kodekit\Library\FilterTimestamp::class,
'lib:filter.trim' => \Kodekit\Library\FilterTrim::class,
'lib:filter.url' => \Kodekit\Library\FilterUrl::class,
'lib:filter.word' => \Kodekit\Library\FilterWord::class,
'lib:filter.xml' => \Kodekit\Library\FilterXml::class,
'lib:filter.yaml' => \Kodekit\Library\FilterYaml::class,
'lib:http.cookie' => \Kodekit\Library\HttpCookie::class,
'lib:http.exception.bad.request' => \Kodekit\Library\HttpExceptionBadRequest::class,
'lib:http.exception.conflict' => \Kodekit\Library\HttpExceptionConflict::class,
'lib:http.exception.forbidden' => \Kodekit\Library\HttpExceptionForbidden::class,
'lib:http.exception.method.not.allowed' => \Kodekit\Library\HttpExceptionMethodNotAllowed::class,
'lib:http.exception.not.acceptable' => \Kodekit\Library\HttpExceptionNotAcceptable::class,
'lib:http.exception.not.found' => \Kodekit\Library\HttpExceptionNotFound::class,
'lib:http.exception.not.implemented' => \Kodekit\Library\HttpExceptionNotImplemented::class,
'lib:http.exception.range.not.satisfied' => \Kodekit\Library\HttpExceptionRangeNotSatisfied::class,
'lib:http.exception.too.many.requests' => \Kodekit\Library\HttpExceptionTooManyRequests::class,
'lib:http.exception.unauthorized' => \Kodekit\Library\HttpExceptionUnauthorized::class,
'lib:http.exception.unsupported.media.type' => \Kodekit\Library\HttpExceptionUnsupportedMediaType::class,
'lib:http.message.headers' => \Kodekit\Library\HttpMessageHeaders::class,
'lib:http.message.parameters' => \Kodekit\Library\HttpMessageParameters::class,
'lib:http.request' => \Kodekit\Library\HttpRequest::class,
'lib:http.request.headers' => \Kodekit\Library\HttpRequestHeaders::class,
'lib:http.response' => \Kodekit\Library\HttpResponse::class,
'lib:http.response.headers' => \Kodekit\Library\HttpResponseHeaders::class,
'lib:http.token' => \Kodekit\Library\HttpToken::class,
'lib:http.url' => \Kodekit\Library\HttpUrl::class,
'lib:manifest' => \Kodekit\Library\Manifest::class,
'lib:model.behavior.indexable' => \Kodekit\Library\ModelBehaviorIndexable::class,
'lib:model.behavior.paginatable' => \Kodekit\Library\ModelBehaviorPaginatable::class,
'lib:model.behavior.searchable' => \Kodekit\Library\ModelBehaviorSearchable::class,
'lib:model.behavior.sortable' => \Kodekit\Library\ModelBehaviorSortable::class,
'lib:model.composite.decorator' => \Kodekit\Library\ModelCompositeDecorator::class,
'lib:model.context' => \Kodekit\Library\ModelContext::class,
'lib:model.context.database' => \Kodekit\Library\ModelContextDatabase::class,
'lib:model.database' => \Kodekit\Library\ModelDatabase::class,
'lib:model.default' => \Kodekit\Library\ModelDefault::class,
'lib:model.empty' => \Kodekit\Library\ModelEmpty::class,
'lib:model.entity.composite' => \Kodekit\Library\ModelEntityComposite::class,
'lib:model.entity.default' => \Kodekit\Library\ModelEntityDefault::class,
'lib:model.entity.immutable' => \Kodekit\Library\ModelEntityImmutable::class,
'lib:model.entity.row' => \Kodekit\Library\ModelEntityRow::class,
'lib:model.entity.rowset' => \Kodekit\Library\ModelEntityRowset::class,
'lib:model.paginator' => \Kodekit\Library\ModelPaginator::class,
'lib:model.state' => \Kodekit\Library\ModelState::class,
'lib:object.array' => \Kodekit\Library\ObjectArray::class,
'lib:object.bootstrapper' => \Kodekit\Library\ObjectBootstrapper::class,
'lib:object.config.factory' => \Kodekit\Library\ObjectConfigFactory::class,
'lib:object.config.ini' => \Kodekit\Library\ObjectConfigIni::class,
'lib:object.config.json' => \Kodekit\Library\ObjectConfigJson::class,
'lib:object.config.php' => \Kodekit\Library\ObjectConfigPhp::class,
'lib:object.config.xml' => \Kodekit\Library\ObjectConfigXml::class,
'lib:object.config.yaml' => \Kodekit\Library\ObjectConfigYaml::class,
'lib:object.exception.invalid.identifier' => \Kodekit\Library\ObjectExceptionInvalidIdentifier::class,
'lib:object.exception.invalid.object' => \Kodekit\Library\ObjectExceptionInvalidObject::class,
'lib:object.exception.not.found' => \Kodekit\Library\ObjectExceptionNotFound::class,
'lib:object.exception.not.instantiated' => \Kodekit\Library\ObjectExceptionNotInstantiated::class,
'lib:object.locator.component' => \Kodekit\Library\ObjectLocatorComponent::class,
'lib:object.locator.library' => \Kodekit\Library\ObjectLocatorLibrary::class,
'lib:object.queue' => \Kodekit\Library\ObjectQueue::class,
'lib:object.registry' => \Kodekit\Library\ObjectRegistry::class,
'lib:object.registry.cache' => \Kodekit\Library\ObjectRegistryCache::class,
'lib:object.set' => \Kodekit\Library\ObjectSet::class,
'lib:object.stack' => \Kodekit\Library\ObjectStack::class,
'lib:template' => \Kodekit\Library\Template::class,
'lib:template.behavior.filterable' => \Kodekit\Library\TemplateBehaviorFilterable::class,
'lib:template.behavior.helperable' => \Kodekit\Library\TemplateBehaviorHelperable::class,
'lib:template.context' => \Kodekit\Library\TemplateContext::class,
'lib:template.default' => \Kodekit\Library\TemplateDefault::class,
'lib:template.engine.factory' => \Kodekit\Library\TemplateEngineFactory::class,
'lib:template.engine.kodekit' => \Kodekit\Library\TemplateEngineKodekit::class,
'lib:template.engine.markdown' => \Kodekit\Library\TemplateEngineMarkdown::class,
'lib:template.engine.mustache' => \Kodekit\Library\TemplateEngineMustache::class,
'lib:template.engine.twig' => \Kodekit\Library\TemplateEngineTwig::class,
'lib:template.exception.syntax.error' => \Kodekit\Library\TemplateExceptionSyntaxError::class,
'lib:template.filter.asset' => \Kodekit\Library\TemplateFilterAsset::class,
'lib:template.filter.block' => \Kodekit\Library\TemplateFilterBlock::class,
'lib:template.filter.decorator' => \Kodekit\Library\TemplateFilterDecorator::class,
'lib:template.filter.form' => \Kodekit\Library\TemplateFilterForm::class,
'lib:template.filter.include' => \Kodekit\Library\TemplateFilterInclude::class,
'lib:template.filter.link' => \Kodekit\Library\TemplateFilterLink::class,
'lib:template.filter.meta' => \Kodekit\Library\TemplateFilterMeta::class,
'lib:template.filter.script' => \Kodekit\Library\TemplateFilterScript::class,
'lib:template.filter.style' => \Kodekit\Library\TemplateFilterStyle::class,
'lib:template.filter.template' => \Kodekit\Library\TemplateFilterTemplate::class,
'lib:template.filter.title' => \Kodekit\Library\TemplateFilterTitle::class,
'lib:template.filter.toolbar' => \Kodekit\Library\TemplateFilterToolbar::class,
'lib:template.filter.whitespace' => \Kodekit\Library\TemplateFilterWhitespace::class,
'lib:template.filter.wrapper' => \Kodekit\Library\TemplateFilterWrapper::class,
'lib:template.helper.actionbar' => \Kodekit\Library\TemplateHelperActionbar::class,
'lib:template.helper.behavior' => \Kodekit\Library\TemplateHelperBehavior::class,
'lib:template.helper.date' => \Kodekit\Library\TemplateHelperDate::class,
'lib:template.helper.debug' => \Kodekit\Library\TemplateHelperDebug::class,
'lib:template.helper.factory' => \Kodekit\Library\TemplateHelperFactory::class,
'lib:template.helper.grid' => \Kodekit\Library\TemplateHelperGrid::class,
'lib:template.helper.listbox' => \Kodekit\Library\TemplateHelperListbox::class,
'lib:template.helper.paginator' => \Kodekit\Library\TemplateHelperPaginator::class,
'lib:template.helper.select' => \Kodekit\Library\TemplateHelperSelect::class,
'lib:template.helper.titlebar' => \Kodekit\Library\TemplateHelperTitlebar::class,
'lib:template.helper.translator' => \Kodekit\Library\TemplateHelperTranslator::class,
'lib:template.helper.ui' => \Kodekit\Library\TemplateHelperUi::class,
'lib:template.locator.component' => \Kodekit\Library\TemplateLocatorComponent::class,
'lib:template.locator.factory' => \Kodekit\Library\TemplateLocatorFactory::class,
'lib:translator' => \Kodekit\Library\Translator::class,
'lib:translator.cache' => \Kodekit\Library\TranslatorCache::class,
'lib:translator.catalogue.default' => \Kodekit\Library\TranslatorCatalogueDefault::class,
'lib:translator.inflector' => \Kodekit\Library\TranslatorInflector::class,
'lib:translator.locator.component' => \Kodekit\Library\TranslatorLocatorComponent::class,
'lib:translator.locator.factory' => \Kodekit\Library\TranslatorLocatorFactory::class,
'lib:user' => \Kodekit\Library\User::class,
'lib:user.default' => \Kodekit\Library\UserDefault::class,
'lib:user.provider' => \Kodekit\Library\UserProvider::class,
'lib:user.provider.abstract' => \Kodekit\Library\UserProviderAbstract::class,
'lib:user.provider.model' => \Kodekit\Library\UserProviderModel::class,
'lib:user.session' => \Kodekit\Library\UserSession::class,
'lib:user.session.abstract' => \Kodekit\Library\UserSessionAbstract::class,
'lib:user.session.container.attribute' => \Kodekit\Library\UserSessionContainerAttribute::class,
'lib:user.session.container.default' => \Kodekit\Library\UserSessionContainerDefault::class,
'lib:user.session.container.message' => \Kodekit\Library\UserSessionContainerMessage::class,
'lib:user.session.container.metadata' => \Kodekit\Library\UserSessionContainerMetadata::class,
'lib:user.session.handler.database' => \Kodekit\Library\UserSessionHandlerDatabase::class,
'lib:user.session.handler.file' => \Kodekit\Library\UserSessionHandlerFile::class,
'lib:user.session.handler.null' => \Kodekit\Library\UserSessionHandlerNull::class,
'lib:view.behavior.decoratable' => \Kodekit\Library\ViewBehaviorDecoratable::class,
'lib:view.behavior.localizable' => \Kodekit\Library\ViewBehaviorLocalizable::class,
'lib:view.behavior.routable' => \Kodekit\Library\ViewBehaviorRoutable::class,
'lib:view.context' => \Kodekit\Library\ViewContext::class,
'lib:view.context.template' => \Kodekit\Library\ViewContextTemplate::class,
'lib:view.csv' => \Kodekit\Library\ViewCsv::class,
'lib:view.default' => \Kodekit\Library\ViewDefault::class,
'lib:view.html' => \Kodekit\Library\ViewHtml::class,
'lib:view.json' => \Kodekit\Library\ViewJson::class,
'lib:view.rss' => \Kodekit\Library\ViewRss::class,
'manifest' => \Kodekit\Library\Manifest::class,
'model.behavior.indexable' => \Kodekit\Library\ModelBehaviorIndexable::class,
'model.behavior.paginatable' => \Kodekit\Library\ModelBehaviorPaginatable::class,
'model.behavior.searchable' => \Kodekit\Library\ModelBehaviorSearchable::class,
'model.behavior.sortable' => \Kodekit\Library\ModelBehaviorSortable::class,
'model.composite.decorator' => \Kodekit\Library\ModelCompositeDecorator::class,
'model.context' => \Kodekit\Library\ModelContext::class,
'model.context.database' => \Kodekit\Library\ModelContextDatabase::class,
'model.database' => \Kodekit\Library\ModelDatabase::class,
'model.default' => \Kodekit\Library\ModelDefault::class,
'model.empty' => \Kodekit\Library\ModelEmpty::class,
'model.entity.composite' => \Kodekit\Library\ModelEntityComposite::class,
'model.entity.default' => \Kodekit\Library\ModelEntityDefault::class,
'model.entity.immutable' => \Kodekit\Library\ModelEntityImmutable::class,
'model.entity.row' => \Kodekit\Library\ModelEntityRow::class,
'model.entity.rowset' => \Kodekit\Library\ModelEntityRowset::class,
'model.paginator' => \Kodekit\Library\ModelPaginator::class,
'model.state' => \Kodekit\Library\ModelState::class,
'object.array' => \Kodekit\Library\ObjectArray::class,
'object.bootstrapper' => \Kodekit\Library\ObjectBootstrapper::class,
'object.config.factory' => \Kodekit\Library\ObjectConfigFactory::class,
'object.config.ini' => \Kodekit\Library\ObjectConfigIni::class,
'object.config.json' => \Kodekit\Library\ObjectConfigJson::class,
'object.config.php' => \Kodekit\Library\ObjectConfigPhp::class,
'object.config.xml' => \Kodekit\Library\ObjectConfigXml::class,
'object.config.yaml' => \Kodekit\Library\ObjectConfigYaml::class,
'object.exception.invalid.identifier' => \Kodekit\Library\ObjectExceptionInvalidIdentifier::class,
'object.exception.invalid.object' => \Kodekit\Library\ObjectExceptionInvalidObject::class,
'object.exception.not.found' => \Kodekit\Library\ObjectExceptionNotFound::class,
'object.exception.not.instantiated' => \Kodekit\Library\ObjectExceptionNotInstantiated::class,
'object.locator.component' => \Kodekit\Library\ObjectLocatorComponent::class,
'object.locator.library' => \Kodekit\Library\ObjectLocatorLibrary::class,
'object.queue' => \Kodekit\Library\ObjectQueue::class,
'object.registry' => \Kodekit\Library\ObjectRegistry::class,
'object.registry.cache' => \Kodekit\Library\ObjectRegistryCache::class,
'object.set' => \Kodekit\Library\ObjectSet::class,
'object.stack' => \Kodekit\Library\ObjectStack::class,
'template' => \Kodekit\Library\Template::class,
'template.behavior.filterable' => \Kodekit\Library\TemplateBehaviorFilterable::class,
'template.behavior.helperable' => \Kodekit\Library\TemplateBehaviorHelperable::class,
'template.context' => \Kodekit\Library\TemplateContext::class,
'template.default' => \Kodekit\Library\TemplateDefault::class,
'template.engine.factory' => \Kodekit\Library\TemplateEngineFactory::class,
'template.engine.kodekit' => \Kodekit\Library\TemplateEngineKodekit::class,
'template.engine.markdown' => \Kodekit\Library\TemplateEngineMarkdown::class,
'template.engine.mustache' => \Kodekit\Library\TemplateEngineMustache::class,
'template.engine.twig' => \Kodekit\Library\TemplateEngineTwig::class,
'template.exception.syntax.error' => \Kodekit\Library\TemplateExceptionSyntaxError::class,
'template.filter.asset' => \Kodekit\Library\TemplateFilterAsset::class,
'template.filter.block' => \Kodekit\Library\TemplateFilterBlock::class,
'template.filter.decorator' => \Kodekit\Library\TemplateFilterDecorator::class,
'template.filter.form' => \Kodekit\Library\TemplateFilterForm::class,
'template.filter.include' => \Kodekit\Library\TemplateFilterInclude::class,
'template.filter.link' => \Kodekit\Library\TemplateFilterLink::class,
'template.filter.meta' => \Kodekit\Library\TemplateFilterMeta::class,
'template.filter.script' => \Kodekit\Library\TemplateFilterScript::class,
'template.filter.style' => \Kodekit\Library\TemplateFilterStyle::class,
'template.filter.template' => \Kodekit\Library\TemplateFilterTemplate::class,
'template.filter.title' => \Kodekit\Library\TemplateFilterTitle::class,
'template.filter.toolbar' => \Kodekit\Library\TemplateFilterToolbar::class,
'template.filter.whitespace' => \Kodekit\Library\TemplateFilterWhitespace::class,
'template.filter.wrapper' => \Kodekit\Library\TemplateFilterWrapper::class,
'template.helper.actionbar' => \Kodekit\Library\TemplateHelperActionbar::class,
'template.helper.behavior' => \Kodekit\Library\TemplateHelperBehavior::class,
'template.helper.date' => \Kodekit\Library\TemplateHelperDate::class,
'template.helper.debug' => \Kodekit\Library\TemplateHelperDebug::class,
'template.helper.factory' => \Kodekit\Library\TemplateHelperFactory::class,
'template.helper.grid' => \Kodekit\Library\TemplateHelperGrid::class,
'template.helper.listbox' => \Kodekit\Library\TemplateHelperListbox::class,
'template.helper.paginator' => \Kodekit\Library\TemplateHelperPaginator::class,
'template.helper.select' => \Kodekit\Library\TemplateHelperSelect::class,
'template.helper.titlebar' => \Kodekit\Library\TemplateHelperTitlebar::class,
'template.helper.translator' => \Kodekit\Library\TemplateHelperTranslator::class,
'template.helper.ui' => \Kodekit\Library\TemplateHelperUi::class,
'template.locator.component' => \Kodekit\Library\TemplateLocatorComponent::class,
'template.locator.factory' => \Kodekit\Library\TemplateLocatorFactory::class,
'translator' => \Kodekit\Library\Translator::class,
'translator.cache' => \Kodekit\Library\TranslatorCache::class,
'translator.catalogue.default' => \Kodekit\Library\TranslatorCatalogueDefault::class,
'translator.inflector' => \Kodekit\Library\TranslatorInflector::class,
'translator.locator.component' => \Kodekit\Library\TranslatorLocatorComponent::class,
'translator.locator.factory' => \Kodekit\Library\TranslatorLocatorFactory::class,
'user' => \Kodekit\Library\User::class,
'user.default' => \Kodekit\Library\UserDefault::class,
'user.provider' => \Kodekit\Library\UserProvider::class,
'user.provider.abstract' => \Kodekit\Library\UserProviderAbstract::class,
'user.provider.model' => \Kodekit\Library\UserProviderModel::class,
'user.session' => \Kodekit\Library\UserSession::class,
'user.session.abstract' => \Kodekit\Library\UserSessionAbstract::class,
'user.session.container.attribute' => \Kodekit\Library\UserSessionContainerAttribute::class,
'user.session.container.default' => \Kodekit\Library\UserSessionContainerDefault::class,
'user.session.container.message' => \Kodekit\Library\UserSessionContainerMessage::class,
'user.session.container.metadata' => \Kodekit\Library\UserSessionContainerMetadata::class,
'user.session.handler.database' => \Kodekit\Library\UserSessionHandlerDatabase::class,
'user.session.handler.file' => \Kodekit\Library\UserSessionHandlerFile::class,
'user.session.handler.null' => \Kodekit\Library\UserSessionHandlerNull::class,
'view.behavior.decoratable' => \Kodekit\Library\ViewBehaviorDecoratable::class,
'view.behavior.localizable' => \Kodekit\Library\ViewBehaviorLocalizable::class,
'view.behavior.routable' => \Kodekit\Library\ViewBehaviorRoutable::class,
'view.context' => \Kodekit\Library\ViewContext::class,
'view.context.template' => \Kodekit\Library\ViewContextTemplate::class,
'view.csv' => \Kodekit\Library\ViewCsv::class,
'view.default' => \Kodekit\Library\ViewDefault::class,
'view.html' => \Kodekit\Library\ViewHtml::class,
'view.json' => \Kodekit\Library\ViewJson::class,
'view.rss' => \Kodekit\Library\ViewRss::class,
]));
override( \Kodekit::getObject(0), // method signature //argument number is ALWAYS 0 now.
map( [
'manager' => \Kodekit\Library\ObjectManagerInterface::class,
'object.manager' => \Kodekit\Library\ObjectManagerInterface::class,
'lib:manager' => \Kodekit\Library\ObjectManagerInterface::class,
'lib:object.manager' => \Kodekit\Library\ObjectManagerInterface::class,
'request' => \Kodekit\Library\DispatcherRequestInterface::class,
'lib:request' => \Kodekit\Library\DispatcherRequestInterface::class,
'response' => \Kodekit\Library\DispatcherResponseInterface::class,
'lib:response' => \Kodekit\Library\DispatcherResponseInterface::class,
'dispatcher' => \Kodekit\Library\DispatcherInterface::class,
'lib:dispatcher' => \Kodekit\Library\DispatcherInterface::class,
// Automatically generated by script:
'behavior.eventable' => \Kodekit\Library\BehaviorEventable::class,
'behavior.exception.handler' => \Kodekit\Library\BehaviorExceptionHandler::class,
'behavior.mixin' => \Kodekit\Library\BehaviorMixin::class,
'class.locator.component' => \Kodekit\Library\ClassLocatorComponent::class,
'class.locator.composer' => \Kodekit\Library\ClassLocatorComposer::class,
'class.locator.library' => \Kodekit\Library\ClassLocatorLibrary::class,
'class.locator.psr' => \Kodekit\Library\ClassLocatorPsr::class,
'class.registry' => \Kodekit\Library\ClassRegistry::class,
'class.registry.cache' => \Kodekit\Library\ClassRegistryCache::class,
'command' => \Kodekit\Library\Command::class,
'command.chain' => \Kodekit\Library\CommandChain::class,
'command.exception.callback' => \Kodekit\Library\CommandExceptionCallback::class,
'command.exception.handler' => \Kodekit\Library\CommandExceptionHandler::class,
'command.mixin' => \Kodekit\Library\CommandMixin::class,
'controller.behavior.commandable' => \Kodekit\Library\ControllerBehaviorCommandable::class,
'controller.behavior.editable' => \Kodekit\Library\ControllerBehaviorEditable::class,
'controller.behavior.localizable' => \Kodekit\Library\ControllerBehaviorLocalizable::class,
'controller.behavior.permissible' => \Kodekit\Library\ControllerBehaviorPermissible::class,
'controller.behavior.persistable' => \Kodekit\Library\ControllerBehaviorPersistable::class,
'controller.context' => \Kodekit\Library\ControllerContext::class,
'controller.context.model' => \Kodekit\Library\ControllerContextModel::class,
'controller.default' => \Kodekit\Library\ControllerDefault::class,
'controller.exception.action.failed' => \Kodekit\Library\ControllerExceptionActionFailed::class,
'controller.exception.action.not.implemented' => \Kodekit\Library\ControllerExceptionActionNotImplemented::class,
'controller.exception.format.invalid' => \Kodekit\Library\ControllerExceptionFormatInvalid::class,
'controller.exception.format.not.supported' => \Kodekit\Library\ControllerExceptionFormatNotSupported::class,
'controller.exception.rate.limit' => \Kodekit\Library\ControllerExceptionRateLimit::class,
'controller.exception.request.forbidden' => \Kodekit\Library\ControllerExceptionRequestForbidden::class,
'controller.exception.request.invalid' => \Kodekit\Library\ControllerExceptionRequestInvalid::class,
'controller.exception.request.not.authenticated' => \Kodekit\Library\ControllerExceptionRequestNotAuthenticated::class,
'controller.exception.request.not.authorized' => \Kodekit\Library\ControllerExceptionRequestNotAuthorized::class,
'controller.exception.resource.locked' => \Kodekit\Library\ControllerExceptionResourceLocked::class,
'controller.exception.resource.not.found' => \Kodekit\Library\ControllerExceptionResourceNotFound::class,
'controller.permission.default' => \Kodekit\Library\ControllerPermissionDefault::class,
'controller.request' => \Kodekit\Library\ControllerRequest::class,
'controller.response' => \Kodekit\Library\ControllerResponse::class,
'controller.toolbar.actionbar' => \Kodekit\Library\ControllerToolbarActionbar::class,
'controller.toolbar.command' => \Kodekit\Library\ControllerToolbarCommand::class,
'controller.toolbar.default' => \Kodekit\Library\ControllerToolbarDefault::class,
'controller.toolbar.iterator.recursive' => \Kodekit\Library\ControllerToolbarIteratorRecursive::class,
'database' => \Kodekit\Library\Database::class,
'database.behavior.accessible' => \Kodekit\Library\DatabaseBehaviorAccessible::class,
'database.behavior.creatable' => \Kodekit\Library\DatabaseBehaviorCreatable::class,
'database.behavior.hittable' => \Kodekit\Library\DatabaseBehaviorHittable::class,
'database.behavior.identifiable' => \Kodekit\Library\DatabaseBehaviorIdentifiable::class,
'database.behavior.lockable' => \Kodekit\Library\DatabaseBehaviorLockable::class,
'database.behavior.modifiable' => \Kodekit\Library\DatabaseBehaviorModifiable::class,
'database.behavior.orderable' => \Kodekit\Library\DatabaseBehaviorOrderable::class,
'database.behavior.parameterizable' => \Kodekit\Library\DatabaseBehaviorParameterizable::class,
'database.behavior.recursable' => \Kodekit\Library\DatabaseBehaviorRecursable::class,
'database.behavior.sluggable' => \Kodekit\Library\DatabaseBehaviorSluggable::class,
'database.context' => \Kodekit\Library\DatabaseContext::class,
'database.context.driver' => \Kodekit\Library\DatabaseContextDriver::class,
'database.context.table' => \Kodekit\Library\DatabaseContextTable::class,
'database.driver.mysqli' => \Kodekit\Library\DatabaseDriverMysqli::class,
'database.iterator.recursive' => \Kodekit\Library\DatabaseIteratorRecursive::class,
'database.query.delete' => \Kodekit\Library\DatabaseQueryDelete::class,
'database.query.insert' => \Kodekit\Library\DatabaseQueryInsert::class,
'database.query.parameters' => \Kodekit\Library\DatabaseQueryParameters::class,
'database.query.select' => \Kodekit\Library\DatabaseQuerySelect::class,
'database.query.show' => \Kodekit\Library\DatabaseQueryShow::class,
'database.query.update' => \Kodekit\Library\DatabaseQueryUpdate::class,
'database.row.default' => \Kodekit\Library\DatabaseRowDefault::class,
'database.rowset.default' => \Kodekit\Library\DatabaseRowsetDefault::class,
'database.schema.column' => \Kodekit\Library\DatabaseSchemaColumn::class,
'database.schema.table' => \Kodekit\Library\DatabaseSchemaTable::class,
'database.table.default' => \Kodekit\Library\DatabaseTableDefault::class,
'date' => \Kodekit\Library\Date::class,
'dispatcher' => \Kodekit\Library\Dispatcher::class,
'dispatcher.authenticator.basic' => \Kodekit\Library\DispatcherAuthenticatorBasic::class,
'dispatcher.authenticator.cookie' => \Kodekit\Library\DispatcherAuthenticatorCookie::class,
'dispatcher.authenticator.origin' => \Kodekit\Library\DispatcherAuthenticatorOrigin::class,
'dispatcher.authenticator.jwt' => \Kodekit\Library\DispatcherAuthenticatorJwt::class,
'dispatcher.behavior.authenticatable' => \Kodekit\Library\DispatcherBehaviorAuthenticatable::class,
'dispatcher.behavior.decoratable' => \Kodekit\Library\DispatcherBehaviorDecoratable::class,
'dispatcher.behavior.limitable' => \Kodekit\Library\DispatcherBehaviorLimitable::class,
'dispatcher.behavior.localizable' => \Kodekit\Library\DispatcherBehaviorLocalizable::class,
'dispatcher.behavior.permissible' => \Kodekit\Library\DispatcherBehaviorPermissible::class,
'dispatcher.behavior.resettable' => \Kodekit\Library\DispatcherBehaviorResettable::class,
'dispatcher.behavior.routable' => \Kodekit\Library\DispatcherBehaviorRoutable::class,
'dispatcher.context' => \Kodekit\Library\DispatcherContext::class,
'dispatcher.default' => \Kodekit\Library\DispatcherDefault::class,
'dispatcher.exception.method.not.allowed' => \Kodekit\Library\DispatcherExceptionMethodNotAllowed::class,
'dispatcher.fragment' => \Kodekit\Library\DispatcherFragment::class,
'dispatcher.permission.default' => \Kodekit\Library\DispatcherPermissionDefault::class,
'dispatcher.permission.fragment' => \Kodekit\Library\DispatcherPermissionFragment::class,
'dispatcher.request' => \Kodekit\Library\DispatcherRequest::class,
'dispatcher.request.transport.data' => \Kodekit\Library\DispatcherRequestTransportData::class,
'dispatcher.request.transport.headers' => \Kodekit\Library\DispatcherRequestTransportHeaders::class,
'dispatcher.request.transport.server' => \Kodekit\Library\DispatcherRequestTransportServer::class,
'dispatcher.response' => \Kodekit\Library\DispatcherResponse::class,
'dispatcher.response.transport.http' => \Kodekit\Library\DispatcherResponseTransportHttp::class,
'dispatcher.response.transport.json' => \Kodekit\Library\DispatcherResponseTransportJson::class,
'dispatcher.response.transport.redirect' => \Kodekit\Library\DispatcherResponseTransportRedirect::class,
'dispatcher.response.transport.sendfile' => \Kodekit\Library\DispatcherResponseTransportSendfile::class,
'dispatcher.response.transport.stream' => \Kodekit\Library\DispatcherResponseTransportStream::class,
'dispatcher.router' => \Kodekit\Library\DispatcherRouter::class,
'dispatcher.router.route' => \Kodekit\Library\DispatcherRouterRoute::class,
'event' => \Kodekit\Library\Event::class,
'event.mixin' => \Kodekit\Library\EventMixin::class,
'event.publisher' => \Kodekit\Library\EventPublisher::class,
'event.publisher.profiler' => \Kodekit\Library\EventPublisherProfiler::class,
'exception.error' => \Kodekit\Library\ExceptionError::class,
'exception.failure' => \Kodekit\Library\ExceptionFailure::class,
'exception.handler' => \Kodekit\Library\ExceptionHandler::class,
'exception.handler.abstract' => \Kodekit\Library\ExceptionHandlerAbstract::class,
'filesystem.locator.component' => \Kodekit\Library\FilesystemLocatorComponent::class,
'filesystem.locator.factory' => \Kodekit\Library\FilesystemLocatorFactory::class,
'filesystem.locator.file' => \Kodekit\Library\FilesystemLocatorFile::class,
'filesystem.mimetype' => \Kodekit\Library\FilesystemMimetype::class,
'filesystem.mimetype.extension' => \Kodekit\Library\FilesystemMimetypeExtension::class,
'filesystem.mimetype.fileinfo' => \Kodekit\Library\FilesystemMimetypeFileinfo::class,
'filesystem.stream.adapter' => \Kodekit\Library\FilesystemStreamAdapter::class,
'filesystem.stream.buffer' => \Kodekit\Library\FilesystemStreamBuffer::class,
'filesystem.stream.default' => \Kodekit\Library\FilesystemStreamDefault::class,
'filesystem.stream.factory' => \Kodekit\Library\FilesystemStreamFactory::class,
'filesystem.stream.filter.whitespace' => \Kodekit\Library\FilesystemStreamFilterWhitespace::class,
'filter.alnum' => \Kodekit\Library\FilterAlnum::class,
'filter.alpha' => \Kodekit\Library\FilterAlpha::class,
'filter.ascii' => \Kodekit\Library\FilterAscii::class,
'filter.base64' => \Kodekit\Library\FilterBase64::class,
'filter.boolean' => \Kodekit\Library\FilterBoolean::class,
'filter.chain' => \Kodekit\Library\FilterChain::class,
'filter.cmd' => \Kodekit\Library\FilterCmd::class,
'filter.date' => \Kodekit\Library\FilterDate::class,
'filter.digit' => \Kodekit\Library\FilterDigit::class,
'filter.dirname' => \Kodekit\Library\FilterDirname::class,
'filter.email' => \Kodekit\Library\FilterEmail::class,
'filter.factory' => \Kodekit\Library\FilterFactory::class,
'filter.filename' => \Kodekit\Library\FilterFilename::class,
'filter.float' => \Kodekit\Library\FilterFloat::class,
'filter.html' => \Kodekit\Library\FilterHtml::class,
'filter.identifier' => \Kodekit\Library\FilterIdentifier::class,
'filter.ini' => \Kodekit\Library\FilterIni::class,
'filter.int' => \Kodekit\Library\FilterInt::class,
'filter.ip' => \Kodekit\Library\FilterIp::class,
'filter.iterator' => \Kodekit\Library\FilterIterator::class,
'filter.json' => \Kodekit\Library\FilterJson::class,
'filter.lang' => \Kodekit\Library\FilterLang::class,
'filter.md5' => \Kodekit\Library\FilterMd5::class,
'filter.numeric' => \Kodekit\Library\FilterNumeric::class,
'filter.path' => \Kodekit\Library\FilterPath::class,
'filter.raw' => \Kodekit\Library\FilterRaw::class,
'filter.sha1' => \Kodekit\Library\FilterSha1::class,
'filter.slug' => \Kodekit\Library\FilterSlug::class,
'filter.string' => \Kodekit\Library\FilterString::class,
'filter.time' => \Kodekit\Library\FilterTime::class,
'filter.timestamp' => \Kodekit\Library\FilterTimestamp::class,
'filter.trim' => \Kodekit\Library\FilterTrim::class,
'filter.url' => \Kodekit\Library\FilterUrl::class,
'filter.word' => \Kodekit\Library\FilterWord::class,
'filter.xml' => \Kodekit\Library\FilterXml::class,
'filter.yaml' => \Kodekit\Library\FilterYaml::class,
'http.cookie' => \Kodekit\Library\HttpCookie::class,
'http.exception.bad.request' => \Kodekit\Library\HttpExceptionBadRequest::class,
'http.exception.conflict' => \Kodekit\Library\HttpExceptionConflict::class,
'http.exception.forbidden' => \Kodekit\Library\HttpExceptionForbidden::class,
'http.exception.method.not.allowed' => \Kodekit\Library\HttpExceptionMethodNotAllowed::class,
'http.exception.not.acceptable' => \Kodekit\Library\HttpExceptionNotAcceptable::class,
'http.exception.not.found' => \Kodekit\Library\HttpExceptionNotFound::class,
'http.exception.not.implemented' => \Kodekit\Library\HttpExceptionNotImplemented::class,
'http.exception.range.not.satisfied' => \Kodekit\Library\HttpExceptionRangeNotSatisfied::class,
'http.exception.too.many.requests' => \Kodekit\Library\HttpExceptionTooManyRequests::class,
'http.exception.unauthorized' => \Kodekit\Library\HttpExceptionUnauthorized::class,
'http.exception.unsupported.media.type' => \Kodekit\Library\HttpExceptionUnsupportedMediaType::class,
'http.message.headers' => \Kodekit\Library\HttpMessageHeaders::class,
'http.message.parameters' => \Kodekit\Library\HttpMessageParameters::class,
'http.request' => \Kodekit\Library\HttpRequest::class,
'http.request.headers' => \Kodekit\Library\HttpRequestHeaders::class,
'http.response' => \Kodekit\Library\HttpResponse::class,
'http.response.headers' => \Kodekit\Library\HttpResponseHeaders::class,
'http.token' => \Kodekit\Library\HttpToken::class,
'http.url' => \Kodekit\Library\HttpUrl::class,
'lib:behavior.eventable' => \Kodekit\Library\BehaviorEventable::class,
'lib:behavior.exception.handler' => \Kodekit\Library\BehaviorExceptionHandler::class,
'lib:behavior.mixin' => \Kodekit\Library\BehaviorMixin::class,
'lib:class.locator.component' => \Kodekit\Library\ClassLocatorComponent::class,
'lib:class.locator.composer' => \Kodekit\Library\ClassLocatorComposer::class,
'lib:class.locator.library' => \Kodekit\Library\ClassLocatorLibrary::class,
'lib:class.locator.psr' => \Kodekit\Library\ClassLocatorPsr::class,
'lib:class.registry' => \Kodekit\Library\ClassRegistry::class,
'lib:class.registry.cache' => \Kodekit\Library\ClassRegistryCache::class,
'lib:command' => \Kodekit\Library\Command::class,
'lib:command.chain' => \Kodekit\Library\CommandChain::class,
'lib:command.exception.callback' => \Kodekit\Library\CommandExceptionCallback::class,
'lib:command.exception.handler' => \Kodekit\Library\CommandExceptionHandler::class,
'lib:command.mixin' => \Kodekit\Library\CommandMixin::class,
'lib:controller.behavior.commandable' => \Kodekit\Library\ControllerBehaviorCommandable::class,
'lib:controller.behavior.editable' => \Kodekit\Library\ControllerBehaviorEditable::class,
'lib:controller.behavior.localizable' => \Kodekit\Library\ControllerBehaviorLocalizable::class,
'lib:controller.behavior.permissible' => \Kodekit\Library\ControllerBehaviorPermissible::class,
'lib:controller.behavior.persistable' => \Kodekit\Library\ControllerBehaviorPersistable::class,
'lib:controller.context' => \Kodekit\Library\ControllerContext::class,
'lib:controller.context.model' => \Kodekit\Library\ControllerContextModel::class,
'lib:controller.default' => \Kodekit\Library\ControllerDefault::class,
'lib:controller.exception.action.failed' => \Kodekit\Library\ControllerExceptionActionFailed::class,
'lib:controller.exception.action.not.implemented' => \Kodekit\Library\ControllerExceptionActionNotImplemented::class,
'lib:controller.exception.format.invalid' => \Kodekit\Library\ControllerExceptionFormatInvalid::class,
'lib:controller.exception.format.not.supported' => \Kodekit\Library\ControllerExceptionFormatNotSupported::class,
'lib:controller.exception.rate.limit' => \Kodekit\Library\ControllerExceptionRateLimit::class,
'lib:controller.exception.request.forbidden' => \Kodekit\Library\ControllerExceptionRequestForbidden::class,
'lib:controller.exception.request.invalid' => \Kodekit\Library\ControllerExceptionRequestInvalid::class,
'lib:controller.exception.request.not.authenticated' => \Kodekit\Library\ControllerExceptionRequestNotAuthenticated::class,
'lib:controller.exception.request.not.authorized' => \Kodekit\Library\ControllerExceptionRequestNotAuthorized::class,
'lib:controller.exception.resource.locked' => \Kodekit\Library\ControllerExceptionResourceLocked::class,
'lib:controller.exception.resource.not.found' => \Kodekit\Library\ControllerExceptionResourceNotFound::class,
'lib:controller.permission.default' => \Kodekit\Library\ControllerPermissionDefault::class,
'lib:controller.request' => \Kodekit\Library\ControllerRequest::class,
'lib:controller.response' => \Kodekit\Library\ControllerResponse::class,
'lib:controller.toolbar.actionbar' => \Kodekit\Library\ControllerToolbarActionbar::class,
'lib:controller.toolbar.command' => \Kodekit\Library\ControllerToolbarCommand::class,
'lib:controller.toolbar.default' => \Kodekit\Library\ControllerToolbarDefault::class,
'lib:controller.toolbar.iterator.recursive' => \Kodekit\Library\ControllerToolbarIteratorRecursive::class,
'lib:database' => \Kodekit\Library\Database::class,
'lib:database.behavior.accessible' => \Kodekit\Library\DatabaseBehaviorAccessible::class,
'lib:database.behavior.creatable' => \Kodekit\Library\DatabaseBehaviorCreatable::class,
'lib:database.behavior.hittable' => \Kodekit\Library\DatabaseBehaviorHittable::class,
'lib:database.behavior.identifiable' => \Kodekit\Library\DatabaseBehaviorIdentifiable::class,
'lib:database.behavior.lockable' => \Kodekit\Library\DatabaseBehaviorLockable::class,
'lib:database.behavior.modifiable' => \Kodekit\Library\DatabaseBehaviorModifiable::class,
'lib:database.behavior.orderable' => \Kodekit\Library\DatabaseBehaviorOrderable::class,
'lib:database.behavior.parameterizable' => \Kodekit\Library\DatabaseBehaviorParameterizable::class,
'lib:database.behavior.recursable' => \Kodekit\Library\DatabaseBehaviorRecursable::class,
'lib:database.behavior.sluggable' => \Kodekit\Library\DatabaseBehaviorSluggable::class,
'lib:database.context' => \Kodekit\Library\DatabaseContext::class,
'lib:database.context.driver' => \Kodekit\Library\DatabaseContextDriver::class,
'lib:database.context.table' => \Kodekit\Library\DatabaseContextTable::class,
'lib:database.driver.mysqli' => \Kodekit\Library\DatabaseDriverMysqli::class,
'lib:database.iterator.recursive' => \Kodekit\Library\DatabaseIteratorRecursive::class,
'lib:database.query.delete' => \Kodekit\Library\DatabaseQueryDelete::class,
'lib:database.query.insert' => \Kodekit\Library\DatabaseQueryInsert::class,
'lib:database.query.parameters' => \Kodekit\Library\DatabaseQueryParameters::class,
'lib:database.query.select' => \Kodekit\Library\DatabaseQuerySelect::class,
'lib:database.query.show' => \Kodekit\Library\DatabaseQueryShow::class,
'lib:database.query.update' => \Kodekit\Library\DatabaseQueryUpdate::class,
'lib:database.row.default' => \Kodekit\Library\DatabaseRowDefault::class,
'lib:database.rowset.default' => \Kodekit\Library\DatabaseRowsetDefault::class,
'lib:database.schema.column' => \Kodekit\Library\DatabaseSchemaColumn::class,
'lib:database.schema.table' => \Kodekit\Library\DatabaseSchemaTable::class,
'lib:database.table.default' => \Kodekit\Library\DatabaseTableDefault::class,
'lib:date' => \Kodekit\Library\Date::class,
'lib:dispatcher' => \Kodekit\Library\Dispatcher::class,
'lib:dispatcher.authenticator.basic' => \Kodekit\Library\DispatcherAuthenticatorBasic::class,
'lib:dispatcher.authenticator.cookie' => \Kodekit\Library\DispatcherAuthenticatorCookie::class,
'lib:dispatcher.authenticator.origin' => \Kodekit\Library\DispatcherAuthenticatorOrigin::class,
'lib:dispatcher.authenticator.jwt' => \Kodekit\Library\DispatcherAuthenticatorJwt::class,
'lib:dispatcher.behavior.authenticatable' => \Kodekit\Library\DispatcherBehaviorAuthenticatable::class,
'lib:dispatcher.behavior.decoratable' => \Kodekit\Library\DispatcherBehaviorDecoratable::class,
'lib:dispatcher.behavior.limitable' => \Kodekit\Library\DispatcherBehaviorLimitable::class,
'lib:dispatcher.behavior.localizable' => \Kodekit\Library\DispatcherBehaviorLocalizable::class,
'lib:dispatcher.behavior.permissible' => \Kodekit\Library\DispatcherBehaviorPermissible::class,
'lib:dispatcher.behavior.resettable' => \Kodekit\Library\DispatcherBehaviorResettable::class,
'lib:dispatcher.behavior.routable' => \Kodekit\Library\DispatcherBehaviorRoutable::class,
'lib:dispatcher.context' => \Kodekit\Library\DispatcherContext::class,
'lib:dispatcher.default' => \Kodekit\Library\DispatcherDefault::class,
'lib:dispatcher.exception.method.not.allowed' => \Kodekit\Library\DispatcherExceptionMethodNotAllowed::class,
'lib:dispatcher.fragment' => \Kodekit\Library\DispatcherFragment::class,
'lib:dispatcher.permission.default' => \Kodekit\Library\DispatcherPermissionDefault::class,
'lib:dispatcher.permission.fragment' => \Kodekit\Library\DispatcherPermissionFragment::class,
'lib:dispatcher.request' => \Kodekit\Library\DispatcherRequest::class,
'lib:dispatcher.request.transport.data' => \Kodekit\Library\DispatcherRequestTransportData::class,
'lib:dispatcher.request.transport.headers' => \Kodekit\Library\DispatcherRequestTransportHeaders::class,
'lib:dispatcher.request.transport.server' => \Kodekit\Library\DispatcherRequestTransportServer::class,
'lib:dispatcher.response' => \Kodekit\Library\DispatcherResponse::class,
'lib:dispatcher.response.transport.http' => \Kodekit\Library\DispatcherResponseTransportHttp::class,
'lib:dispatcher.response.transport.json' => \Kodekit\Library\DispatcherResponseTransportJson::class,
'lib:dispatcher.response.transport.redirect' => \Kodekit\Library\DispatcherResponseTransportRedirect::class,
'lib:dispatcher.response.transport.sendfile' => \Kodekit\Library\DispatcherResponseTransportSendfile::class,
'lib:dispatcher.response.transport.stream' => \Kodekit\Library\DispatcherResponseTransportStream::class,
'lib:dispatcher.router' => \Kodekit\Library\DispatcherRouter::class,
'lib:dispatcher.router.route' => \Kodekit\Library\DispatcherRouterRoute::class,
'lib:event' => \Kodekit\Library\Event::class,
'lib:event.mixin' => \Kodekit\Library\EventMixin::class,
'lib:event.publisher' => \Kodekit\Library\EventPublisher::class,
'lib:event.publisher.profiler' => \Kodekit\Library\EventPublisherProfiler::class,
'lib:exception.error' => \Kodekit\Library\ExceptionError::class,
'lib:exception.failure' => \Kodekit\Library\ExceptionFailure::class,
'lib:exception.handler' => \Kodekit\Library\ExceptionHandler::class,
'lib:exception.handler.abstract' => \Kodekit\Library\ExceptionHandlerAbstract::class,
'lib:filesystem.locator.component' => \Kodekit\Library\FilesystemLocatorComponent::class,
'lib:filesystem.locator.factory' => \Kodekit\Library\FilesystemLocatorFactory::class,
'lib:filesystem.locator.file' => \Kodekit\Library\FilesystemLocatorFile::class,
'lib:filesystem.mimetype' => \Kodekit\Library\FilesystemMimetype::class,
'lib:filesystem.mimetype.extension' => \Kodekit\Library\FilesystemMimetypeExtension::class,
'lib:filesystem.mimetype.fileinfo' => \Kodekit\Library\FilesystemMimetypeFileinfo::class,
'lib:filesystem.stream.adapter' => \Kodekit\Library\FilesystemStreamAdapter::class,
'lib:filesystem.stream.buffer' => \Kodekit\Library\FilesystemStreamBuffer::class,
'lib:filesystem.stream.default' => \Kodekit\Library\FilesystemStreamDefault::class,
'lib:filesystem.stream.factory' => \Kodekit\Library\FilesystemStreamFactory::class,
'lib:filesystem.stream.filter.whitespace' => \Kodekit\Library\FilesystemStreamFilterWhitespace::class,
'lib:filter.alnum' => \Kodekit\Library\FilterAlnum::class,
'lib:filter.alpha' => \Kodekit\Library\FilterAlpha::class,
'lib:filter.ascii' => \Kodekit\Library\FilterAscii::class,
'lib:filter.base64' => \Kodekit\Library\FilterBase64::class,
'lib:filter.boolean' => \Kodekit\Library\FilterBoolean::class,
'lib:filter.chain' => \Kodekit\Library\FilterChain::class,
'lib:filter.cmd' => \Kodekit\Library\FilterCmd::class,
'lib:filter.date' => \Kodekit\Library\FilterDate::class,
'lib:filter.digit' => \Kodekit\Library\FilterDigit::class,
'lib:filter.dirname' => \Kodekit\Library\FilterDirname::class,
'lib:filter.email' => \Kodekit\Library\FilterEmail::class,
'lib:filter.factory' => \Kodekit\Library\FilterFactory::class,
'lib:filter.filename' => \Kodekit\Library\FilterFilename::class,
'lib:filter.float' => \Kodekit\Library\FilterFloat::class,
'lib:filter.html' => \Kodekit\Library\FilterHtml::class,
'lib:filter.identifier' => \Kodekit\Library\FilterIdentifier::class,
'lib:filter.ini' => \Kodekit\Library\FilterIni::class,
'lib:filter.int' => \Kodekit\Library\FilterInt::class,
'lib:filter.ip' => \Kodekit\Library\FilterIp::class,
'lib:filter.iterator' => \Kodekit\Library\FilterIterator::class,
'lib:filter.json' => \Kodekit\Library\FilterJson::class,
'lib:filter.lang' => \Kodekit\Library\FilterLang::class,
'lib:filter.md5' => \Kodekit\Library\FilterMd5::class,
'lib:filter.numeric' => \Kodekit\Library\FilterNumeric::class,
'lib:filter.path' => \Kodekit\Library\FilterPath::class,
'lib:filter.raw' => \Kodekit\Library\FilterRaw::class,
'lib:filter.sha1' => \Kodekit\Library\FilterSha1::class,
'lib:filter.slug' => \Kodekit\Library\FilterSlug::class,
'lib:filter.string' => \Kodekit\Library\FilterString::class,
'lib:filter.time' => \Kodekit\Library\FilterTime::class,
'lib:filter.timestamp' => \Kodekit\Library\FilterTimestamp::class,
'lib:filter.trim' => \Kodekit\Library\FilterTrim::class,
'lib:filter.url' => \Kodekit\Library\FilterUrl::class,
'lib:filter.word' => \Kodekit\Library\FilterWord::class,
'lib:filter.xml' => \Kodekit\Library\FilterXml::class,
'lib:filter.yaml' => \Kodekit\Library\FilterYaml::class,
'lib:http.cookie' => \Kodekit\Library\HttpCookie::class,
'lib:http.exception.bad.request' => \Kodekit\Library\HttpExceptionBadRequest::class,
'lib:http.exception.conflict' => \Kodekit\Library\HttpExceptionConflict::class,
'lib:http.exception.forbidden' => \Kodekit\Library\HttpExceptionForbidden::class,
'lib:http.exception.method.not.allowed' => \Kodekit\Library\HttpExceptionMethodNotAllowed::class,
'lib:http.exception.not.acceptable' => \Kodekit\Library\HttpExceptionNotAcceptable::class,
'lib:http.exception.not.found' => \Kodekit\Library\HttpExceptionNotFound::class,
'lib:http.exception.not.implemented' => \Kodekit\Library\HttpExceptionNotImplemented::class,
'lib:http.exception.range.not.satisfied' => \Kodekit\Library\HttpExceptionRangeNotSatisfied::class,
'lib:http.exception.too.many.requests' => \Kodekit\Library\HttpExceptionTooManyRequests::class,
'lib:http.exception.unauthorized' => \Kodekit\Library\HttpExceptionUnauthorized::class,
'lib:http.exception.unsupported.media.type' => \Kodekit\Library\HttpExceptionUnsupportedMediaType::class,
'lib:http.message.headers' => \Kodekit\Library\HttpMessageHeaders::class,
'lib:http.message.parameters' => \Kodekit\Library\HttpMessageParameters::class,
'lib:http.request' => \Kodekit\Library\HttpRequest::class,
'lib:http.request.headers' => \Kodekit\Library\HttpRequestHeaders::class,
'lib:http.response' => \Kodekit\Library\HttpResponse::class,
'lib:http.response.headers' => \Kodekit\Library\HttpResponseHeaders::class,
'lib:http.token' => \Kodekit\Library\HttpToken::class,
'lib:http.url' => \Kodekit\Library\HttpUrl::class,
'lib:manifest' => \Kodekit\Library\Manifest::class,
'lib:model.behavior.indexable' => \Kodekit\Library\ModelBehaviorIndexable::class,
'lib:model.behavior.paginatable' => \Kodekit\Library\ModelBehaviorPaginatable::class,
'lib:model.behavior.searchable' => \Kodekit\Library\ModelBehaviorSearchable::class,
'lib:model.behavior.sortable' => \Kodekit\Library\ModelBehaviorSortable::class,
'lib:model.composite.decorator' => \Kodekit\Library\ModelCompositeDecorator::class,
'lib:model.context' => \Kodekit\Library\ModelContext::class,
'lib:model.context.database' => \Kodekit\Library\ModelContextDatabase::class,
'lib:model.database' => \Kodekit\Library\ModelDatabase::class,
'lib:model.default' => \Kodekit\Library\ModelDefault::class,
'lib:model.empty' => \Kodekit\Library\ModelEmpty::class,
'lib:model.entity.composite' => \Kodekit\Library\ModelEntityComposite::class,
'lib:model.entity.default' => \Kodekit\Library\ModelEntityDefault::class,
'lib:model.entity.immutable' => \Kodekit\Library\ModelEntityImmutable::class,
'lib:model.entity.row' => \Kodekit\Library\ModelEntityRow::class,
'lib:model.entity.rowset' => \Kodekit\Library\ModelEntityRowset::class,
'lib:model.paginator' => \Kodekit\Library\ModelPaginator::class,
'lib:model.state' => \Kodekit\Library\ModelState::class,
'lib:object.array' => \Kodekit\Library\ObjectArray::class,
'lib:object.bootstrapper' => \Kodekit\Library\ObjectBootstrapper::class,
'lib:object.config.factory' => \Kodekit\Library\ObjectConfigFactory::class,
'lib:object.config.ini' => \Kodekit\Library\ObjectConfigIni::class,
'lib:object.config.json' => \Kodekit\Library\ObjectConfigJson::class,
'lib:object.config.php' => \Kodekit\Library\ObjectConfigPhp::class,
'lib:object.config.xml' => \Kodekit\Library\ObjectConfigXml::class,
'lib:object.config.yaml' => \Kodekit\Library\ObjectConfigYaml::class,
'lib:object.exception.invalid.identifier' => \Kodekit\Library\ObjectExceptionInvalidIdentifier::class,
'lib:object.exception.invalid.object' => \Kodekit\Library\ObjectExceptionInvalidObject::class,
'lib:object.exception.not.found' => \Kodekit\Library\ObjectExceptionNotFound::class,
'lib:object.exception.not.instantiated' => \Kodekit\Library\ObjectExceptionNotInstantiated::class,
'lib:object.locator.component' => \Kodekit\Library\ObjectLocatorComponent::class,
'lib:object.locator.library' => \Kodekit\Library\ObjectLocatorLibrary::class,
'lib:object.queue' => \Kodekit\Library\ObjectQueue::class,
'lib:object.registry' => \Kodekit\Library\ObjectRegistry::class,
'lib:object.registry.cache' => \Kodekit\Library\ObjectRegistryCache::class,
'lib:object.set' => \Kodekit\Library\ObjectSet::class,
'lib:object.stack' => \Kodekit\Library\ObjectStack::class,
'lib:template' => \Kodekit\Library\Template::class,
'lib:template.behavior.filterable' => \Kodekit\Library\TemplateBehaviorFilterable::class,
'lib:template.behavior.helperable' => \Kodekit\Library\TemplateBehaviorHelperable::class,
'lib:template.context' => \Kodekit\Library\TemplateContext::class,
'lib:template.default' => \Kodekit\Library\TemplateDefault::class,
'lib:template.engine.factory' => \Kodekit\Library\TemplateEngineFactory::class,
'lib:template.engine.kodekit' => \Kodekit\Library\TemplateEngineKodekit::class,
'lib:template.engine.markdown' => \Kodekit\Library\TemplateEngineMarkdown::class,
'lib:template.engine.mustache' => \Kodekit\Library\TemplateEngineMustache::class,
'lib:template.engine.twig' => \Kodekit\Library\TemplateEngineTwig::class,
'lib:template.exception.syntax.error' => \Kodekit\Library\TemplateExceptionSyntaxError::class,
'lib:template.filter.asset' => \Kodekit\Library\TemplateFilterAsset::class,
'lib:template.filter.block' => \Kodekit\Library\TemplateFilterBlock::class,
'lib:template.filter.decorator' => \Kodekit\Library\TemplateFilterDecorator::class,
'lib:template.filter.form' => \Kodekit\Library\TemplateFilterForm::class,
'lib:template.filter.include' => \Kodekit\Library\TemplateFilterInclude::class,
'lib:template.filter.link' => \Kodekit\Library\TemplateFilterLink::class,
'lib:template.filter.meta' => \Kodekit\Library\TemplateFilterMeta::class,