-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsami.js
More file actions
1371 lines (1194 loc) · 345 KB
/
sami.js
File metadata and controls
1371 lines (1194 loc) · 345 KB
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
window.projectVersion = 'master';
(function(root) {
var bhIndex = null;
var rootPath = '';
var treeHtml = ' <ul> <li data-name="namespace:Simples" class="opened"> <div style="padding-left:0px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples.html">Simples</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Console" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Console.html">Console</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Console_Kernel" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Console/Kernel.html">Kernel</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Console_Kernel_App" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Console/Kernel/App.html">App</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Console_ControllerService" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Console/ControllerService.html">ControllerService</a> </div> </li> <li data-name="class:Simples_Console_FileManager" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Console/FileManager.html">FileManager</a> </div> </li> <li data-name="class:Simples_Console_GeneratorService" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Console/GeneratorService.html">GeneratorService</a> </div> </li> <li data-name="class:Simples_Console_HelpService" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Console/HelpService.html">HelpService</a> </div> </li> <li data-name="class:Simples_Console_ModelService" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Console/ModelService.html">ModelService</a> </div> </li> <li data-name="class:Simples_Console_RepositoryService" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Console/RepositoryService.html">RepositoryService</a> </div> </li> <li data-name="class:Simples_Console_Service" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Console/Service.html">Service</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Controller" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Controller.html">Controller</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Controller_ApiController" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Controller/ApiController.html">ApiController</a> </div> </li> <li data-name="class:Simples_Controller_QueryController" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Controller/QueryController.html">QueryController</a> </div> </li> <li data-name="class:Simples_Controller_ViewController" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Controller/ViewController.html">ViewController</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Data" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Data.html">Data</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Data_Error" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Data/Error.html">Error</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Data_Error_SimplesRecordReadonlyError" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Error/SimplesRecordReadonlyError.html">SimplesRecordReadonlyError</a> </div> </li> <li data-name="class:Simples_Data_Error_SimplesResourceError" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Error/SimplesResourceError.html">SimplesResourceError</a> </div> </li> <li data-name="class:Simples_Data_Error_SimplesValidationError" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Error/SimplesValidationError.html">SimplesValidationError</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Data_Resources" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Data/Resources.html">Resources</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Data_Resources_AccessTrait" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Resources/AccessTrait.html">AccessTrait</a> </div> </li> <li data-name="class:Simples_Data_Resources_GroupTrait" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Resources/GroupTrait.html">GroupTrait</a> </div> </li> <li data-name="class:Simples_Data_Resources_IteratorTrait" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Resources/IteratorTrait.html">IteratorTrait</a> </div> </li> <li data-name="class:Simples_Data_Resources_ManipulationTrait" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Resources/ManipulationTrait.html">ManipulationTrait</a> </div> </li> <li data-name="class:Simples_Data_Resources_ModelTrait" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Resources/ModelTrait.html">ModelTrait</a> </div> </li> <li data-name="class:Simples_Data_Resources_MutationTrait" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Resources/MutationTrait.html">MutationTrait</a> </div> </li> <li data-name="class:Simples_Data_Resources_RecordsTrait" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Resources/RecordsTrait.html">RecordsTrait</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Data_Validators" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Data/Validators.html">Validators</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Data_Validators_DatabaseValidator" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Validators/DatabaseValidator.html">DatabaseValidator</a> </div> </li> <li data-name="class:Simples_Data_Validators_DateValidator" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Validators/DateValidator.html">DateValidator</a> </div> </li> <li data-name="class:Simples_Data_Validators_FileValidator" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Validators/FileValidator.html">FileValidator</a> </div> </li> <li data-name="class:Simples_Data_Validators_LogicalValidator" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Validators/LogicalValidator.html">LogicalValidator</a> </div> </li> <li data-name="class:Simples_Data_Validators_NumberValidator" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Validators/NumberValidator.html">NumberValidator</a> </div> </li> <li data-name="class:Simples_Data_Validators_StringValidator" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Data/Validators/StringValidator.html">StringValidator</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Data_Collection" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Data/Collection.html">Collection</a> </div> </li> <li data-name="class:Simples_Data_Record" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Data/Record.html">Record</a> </div> </li> <li data-name="class:Simples_Data_Validation" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Data/Validation.html">Validation</a> </div> </li> <li data-name="class:Simples_Data_Validator" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Data/Validator.html">Validator</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Error" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Error.html">Error</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Error_NotFoundExceptionInterface" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Error/NotFoundExceptionInterface.html">NotFoundExceptionInterface</a> </div> </li> <li data-name="class:Simples_Error_SimplesAlreadyRegisteredError" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Error/SimplesAlreadyRegisteredError.html">SimplesAlreadyRegisteredError</a> </div> </li> <li data-name="class:Simples_Error_SimplesRunTimeError" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Error/SimplesRunTimeError.html">SimplesRunTimeError</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Helper" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Helper.html">Helper</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Helper_Date" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Helper/Date.html">Date</a> </div> </li> <li data-name="class:Simples_Helper_Datetime" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Helper/Datetime.html">Datetime</a> </div> </li> <li data-name="class:Simples_Helper_Directory" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Helper/Directory.html">Directory</a> </div> </li> <li data-name="class:Simples_Helper_File" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Helper/File.html">File</a> </div> </li> <li data-name="class:Simples_Helper_JSON" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Helper/JSON.html">JSON</a> </div> </li> <li data-name="class:Simples_Helper_Text" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Helper/Text.html">Text</a> </div> </li> <li data-name="class:Simples_Helper_Time" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Helper/Time.html">Time</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Http" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Http.html">Http</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Http_Contract" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Http/Contract.html">Contract</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Http_Contract_Delegate" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Contract/Delegate.html">Delegate</a> </div> </li> <li data-name="class:Simples_Http_Contract_Middleware" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Contract/Middleware.html">Middleware</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Http_Error" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Http/Error.html">Error</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Http_Error_SimplesForbiddenError" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Error/SimplesForbiddenError.html">SimplesForbiddenError</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Http_Kernel" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Http/Kernel.html">Kernel</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Http_Kernel_App" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Kernel/App.html">App</a> </div> </li> <li data-name="class:Simples_Http_Kernel_Delegate" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Kernel/Delegate.html">Delegate</a> </div> </li> <li data-name="class:Simples_Http_Kernel_Handler" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Kernel/Handler.html">Handler</a> </div> </li> <li data-name="class:Simples_Http_Kernel_Http" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Kernel/Http.html">Http</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Http_Middleware" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Http/Middleware.html">Middleware</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Http_Middleware_CrossOriginResourceSharing" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Middleware/CrossOriginResourceSharing.html">CrossOriginResourceSharing</a> </div> </li> <li data-name="class:Simples_Http_Middleware_HttpResponse" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Middleware/HttpResponse.html">HttpResponse</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Http_Request" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Http/Request.html">Request</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Http_Request_Body" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Request/Body.html">Body</a> </div> </li> <li data-name="class:Simples_Http_Request_Extract" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Http/Request/Extract.html">Extract</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Http_Controller" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Http/Controller.html">Controller</a> </div> </li> <li data-name="class:Simples_Http_Input" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Http/Input.html">Input</a> </div> </li> <li data-name="class:Simples_Http_Request" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Http/Request.html">Request</a> </div> </li> <li data-name="class:Simples_Http_Response" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Http/Response.html">Response</a> </div> </li> <li data-name="class:Simples_Http_ResponseStream" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Http/ResponseStream.html">ResponseStream</a> </div> </li> <li data-name="class:Simples_Http_Stream" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Http/Stream.html">Stream</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Kernel" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Kernel.html">Kernel</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Kernel_App" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Kernel/App.html">App</a> </div> </li> <li data-name="class:Simples_Kernel_Base" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Kernel/Base.html">Base</a> </div> </li> <li data-name="class:Simples_Kernel_Container" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Kernel/Container.html">Container</a> </div> </li> <li data-name="class:Simples_Kernel_Middleware" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Kernel/Middleware.html">Middleware</a> </div> </li> <li data-name="class:Simples_Kernel_Wrapper" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Kernel/Wrapper.html">Wrapper</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Message" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Message.html">Message</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Message_Lang" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Message/Lang.html">Lang</a> </div> </li> <li data-name="class:Simples_Message_Mail" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Message/Mail.html">Mail</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Migration" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Migration.html">Migration</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Migration_SQL" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Migration/SQL.html">SQL</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Migration_SQL_MySQL" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Migration/SQL/MySQL.html">MySQL</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Migration_Driver" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Migration/Driver.html">Driver</a> </div> </li> <li data-name="class:Simples_Migration_Instruction" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Migration/Instruction.html">Instruction</a> </div> </li> <li data-name="class:Simples_Migration_Migrant" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Migration/Migrant.html">Migrant</a> </div> </li> <li data-name="class:Simples_Migration_Revision" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Migration/Revision.html">Revision</a> </div> </li> <li data-name="class:Simples_Migration_Service" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Migration/Service.html">Service</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Model" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Model.html">Model</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Model_Error" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Model/Error.html">Error</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Model_Error_SimplesActionError" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Error/SimplesActionError.html">SimplesActionError</a> </div> </li> <li data-name="class:Simples_Model_Error_SimplesHookError" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Error/SimplesHookError.html">SimplesHookError</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Model_Repository" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Model/Repository.html">Repository</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Model_Repository_Resource" > <div style="padding-left:54px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Model/Repository/Resource.html">Resource</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Model_Repository_Resource_ValidationParser" > <div style="padding-left:80px" class="hd leaf"> <a href="Simples/Model/Repository/Resource/ValidationParser.html">ValidationParser</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Model_Repository_ModelRepository" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Repository/ModelRepository.html">ModelRepository</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Model_Resource" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Model/Resource.html">Resource</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Model_Resource_Cache" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Resource/Cache.html">Cache</a> </div> </li> <li data-name="class:Simples_Model_Resource_ModelAggregation" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Resource/ModelAggregation.html">ModelAggregation</a> </div> </li> <li data-name="class:Simples_Model_Resource_ModelHook" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Resource/ModelHook.html">ModelHook</a> </div> </li> <li data-name="class:Simples_Model_Resource_ModelParser" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Resource/ModelParser.html">ModelParser</a> </div> </li> <li data-name="class:Simples_Model_Resource_ModelPivot" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Resource/ModelPivot.html">ModelPivot</a> </div> </li> <li data-name="class:Simples_Model_Resource_ModelTimestamp" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Model/Resource/ModelTimestamp.html">ModelTimestamp</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Model_Action" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Model/Action.html">Action</a> </div> </li> <li data-name="class:Simples_Model_DataMapper" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Model/DataMapper.html">DataMapper</a> </div> </li> <li data-name="class:Simples_Model_ModelAbstract" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Model/ModelAbstract.html">ModelAbstract</a> </div> </li> <li data-name="class:Simples_Model_ModelContract" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Model/ModelContract.html">ModelContract</a> </div> </li> <li data-name="class:Simples_Model_Relation" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Model/Relation.html">Relation</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Persistence" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Persistence.html">Persistence</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Persistence_Drivers" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Persistence/Drivers.html">Drivers</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Persistence_Drivers_MySQL" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Persistence/Drivers/MySQL.html">MySQL</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Persistence_Error" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Persistence/Error.html">Error</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Persistence_Error_SimplesPersistenceError" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Persistence/Error/SimplesPersistenceError.html">SimplesPersistenceError</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Persistence_SQL" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Persistence/SQL.html">SQL</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Persistence_SQL_Error" > <div style="padding-left:54px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Persistence/SQL/Error.html">Error</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Persistence_SQL_Error_SimplesPersistenceDataError" > <div style="padding-left:80px" class="hd leaf"> <a href="Simples/Persistence/SQL/Error/SimplesPersistenceDataError.html">SimplesPersistenceDataError</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_Error_SimplesUnsupportedField" > <div style="padding-left:80px" class="hd leaf"> <a href="Simples/Persistence/SQL/Error/SimplesUnsupportedField.html">SimplesUnsupportedField</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Persistence_SQL_Operations" > <div style="padding-left:54px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Persistence/SQL/Operations.html">Operations</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Persistence_SQL_Operations_Create" > <div style="padding-left:80px" class="hd leaf"> <a href="Simples/Persistence/SQL/Operations/Create.html">Create</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_Operations_Destroy" > <div style="padding-left:80px" class="hd leaf"> <a href="Simples/Persistence/SQL/Operations/Destroy.html">Destroy</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_Operations_Read" > <div style="padding-left:80px" class="hd leaf"> <a href="Simples/Persistence/SQL/Operations/Read.html">Read</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_Operations_Update" > <div style="padding-left:80px" class="hd leaf"> <a href="Simples/Persistence/SQL/Operations/Update.html">Update</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Persistence_SQL_Connection" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Persistence/SQL/Connection.html">Connection</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_Driver" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Persistence/SQL/Driver.html">Driver</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_Filters" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Persistence/SQL/Filters.html">Filters</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_Modifiers" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Persistence/SQL/Modifiers.html">Modifiers</a> </div> </li> <li data-name="class:Simples_Persistence_SQL_SolverColumn" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Persistence/SQL/SolverColumn.html">SolverColumn</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Persistence_Connection" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Connection.html">Connection</a> </div> </li> <li data-name="class:Simples_Persistence_Driver" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Driver.html">Driver</a> </div> </li> <li data-name="class:Simples_Persistence_Engine" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Engine.html">Engine</a> </div> </li> <li data-name="class:Simples_Persistence_Factory" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Factory.html">Factory</a> </div> </li> <li data-name="class:Simples_Persistence_Field" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Field.html">Field</a> </div> </li> <li data-name="class:Simples_Persistence_FieldAbstract" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/FieldAbstract.html">FieldAbstract</a> </div> </li> <li data-name="class:Simples_Persistence_Filter" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Filter.html">Filter</a> </div> </li> <li data-name="class:Simples_Persistence_FilterMap" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/FilterMap.html">FilterMap</a> </div> </li> <li data-name="class:Simples_Persistence_Fusion" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Fusion.html">Fusion</a> </div> </li> <li data-name="class:Simples_Persistence_QueryBuilder" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/QueryBuilder.html">QueryBuilder</a> </div> </li> <li data-name="class:Simples_Persistence_Transaction" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Persistence/Transaction.html">Transaction</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Route" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Route.html">Route</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Route_Console" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Route/Console.html">Console</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Route_Console_RouteService" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Route/Console/RouteService.html">RouteService</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Route_Base" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Route/Base.html">Base</a> </div> </li> <li data-name="class:Simples_Route_Engine" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Route/Engine.html">Engine</a> </div> </li> <li data-name="class:Simples_Route_Match" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Route/Match.html">Match</a> </div> </li> <li data-name="class:Simples_Route_Router" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Route/Router.html">Router</a> </div> </li> <li data-name="class:Simples_Route_Sharable" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Route/Sharable.html">Sharable</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Security" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Security.html">Security</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Security_Auth" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Security/Auth.html">Auth</a> </div> </li> <li data-name="class:Simples_Security_Encryption" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Security/Encryption.html">Encryption</a> </div> </li> <li data-name="class:Simples_Security_JWT" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Security/JWT.html">JWT</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Template" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Template.html">Template</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Template_Mustache" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Template/Mustache.html">Mustache</a> </div> </li> <li data-name="class:Simples_Template_Tools" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Template/Tools.html">Tools</a> </div> </li> <li data-name="class:Simples_Template_View" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Template/View.html">View</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Test" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Test.html">Test</a> </div> <div class="bd"> <ul> <li data-name="namespace:Simples_Test_Cases" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Test/Cases.html">Cases</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Test_Cases_API" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Cases/API.html">API</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Test_Error" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Test/Error.html">Error</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Test_Error_ErrorDirectoryNotFound" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Error/ErrorDirectoryNotFound.html">ErrorDirectoryNotFound</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Test_Headers" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Test/Headers.html">Headers</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Test_Headers_API" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Headers/API.html">API</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Test_Http" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Test/Http.html">Http</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Test_Http_Client" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Http/Client.html">Client</a> </div> </li> <li data-name="class:Simples_Test_Http_Header" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Http/Header.html">Header</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Test_Scope" > <div style="padding-left:36px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Test/Scope.html">Scope</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Test_Scope_Assert" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Scope/Assert.html">Assert</a> </div> </li> <li data-name="class:Simples_Test_Scope_Environment" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Scope/Environment.html">Environment</a> </div> </li> <li data-name="class:Simples_Test_Scope_Memory" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Scope/Memory.html">Memory</a> </div> </li> <li data-name="class:Simples_Test_Scope_Set" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Scope/Set.html">Set</a> </div> </li> <li data-name="class:Simples_Test_Scope_Test" > <div style="padding-left:62px" class="hd leaf"> <a href="Simples/Test/Scope/Test.html">Test</a> </div> </li> </ul></div> </li> <li data-name="class:Simples_Test_App" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Test/App.html">App</a> </div> </li> </ul></div> </li> <li data-name="namespace:Simples_Unit" class="opened"> <div style="padding-left:18px" class="hd"> <span class="glyphicon glyphicon-play"></span><a href="Simples/Unit.html">Unit</a> </div> <div class="bd"> <ul> <li data-name="class:Simples_Unit_Origin" > <div style="padding-left:44px" class="hd leaf"> <a href="Simples/Unit/Origin.html">Origin</a> </div> </li> </ul></div> </li> </ul></div> </li> </ul>';
var searchTypeClasses = {
'Namespace': 'label-default',
'Class': 'label-info',
'Interface': 'label-primary',
'Trait': 'label-success',
'Method': 'label-danger',
'_': 'label-warning'
};
var searchIndex = [
{"type": "Namespace", "link": "Simples.html", "name": "Simples", "doc": "Namespace Simples"},{"type": "Namespace", "link": "Simples/Console.html", "name": "Simples\\Console", "doc": "Namespace Simples\\Console"},{"type": "Namespace", "link": "Simples/Console/Kernel.html", "name": "Simples\\Console\\Kernel", "doc": "Namespace Simples\\Console\\Kernel"},{"type": "Namespace", "link": "Simples/Controller.html", "name": "Simples\\Controller", "doc": "Namespace Simples\\Controller"},{"type": "Namespace", "link": "Simples/Data.html", "name": "Simples\\Data", "doc": "Namespace Simples\\Data"},{"type": "Namespace", "link": "Simples/Data/Error.html", "name": "Simples\\Data\\Error", "doc": "Namespace Simples\\Data\\Error"},{"type": "Namespace", "link": "Simples/Data/Resources.html", "name": "Simples\\Data\\Resources", "doc": "Namespace Simples\\Data\\Resources"},{"type": "Namespace", "link": "Simples/Data/Validators.html", "name": "Simples\\Data\\Validators", "doc": "Namespace Simples\\Data\\Validators"},{"type": "Namespace", "link": "Simples/Error.html", "name": "Simples\\Error", "doc": "Namespace Simples\\Error"},{"type": "Namespace", "link": "Simples/Helper.html", "name": "Simples\\Helper", "doc": "Namespace Simples\\Helper"},{"type": "Namespace", "link": "Simples/Http.html", "name": "Simples\\Http", "doc": "Namespace Simples\\Http"},{"type": "Namespace", "link": "Simples/Http/Contract.html", "name": "Simples\\Http\\Contract", "doc": "Namespace Simples\\Http\\Contract"},{"type": "Namespace", "link": "Simples/Http/Error.html", "name": "Simples\\Http\\Error", "doc": "Namespace Simples\\Http\\Error"},{"type": "Namespace", "link": "Simples/Http/Kernel.html", "name": "Simples\\Http\\Kernel", "doc": "Namespace Simples\\Http\\Kernel"},{"type": "Namespace", "link": "Simples/Http/Middleware.html", "name": "Simples\\Http\\Middleware", "doc": "Namespace Simples\\Http\\Middleware"},{"type": "Namespace", "link": "Simples/Http/Request.html", "name": "Simples\\Http\\Request", "doc": "Namespace Simples\\Http\\Request"},{"type": "Namespace", "link": "Simples/Kernel.html", "name": "Simples\\Kernel", "doc": "Namespace Simples\\Kernel"},{"type": "Namespace", "link": "Simples/Message.html", "name": "Simples\\Message", "doc": "Namespace Simples\\Message"},{"type": "Namespace", "link": "Simples/Migration.html", "name": "Simples\\Migration", "doc": "Namespace Simples\\Migration"},{"type": "Namespace", "link": "Simples/Migration/SQL.html", "name": "Simples\\Migration\\SQL", "doc": "Namespace Simples\\Migration\\SQL"},{"type": "Namespace", "link": "Simples/Model.html", "name": "Simples\\Model", "doc": "Namespace Simples\\Model"},{"type": "Namespace", "link": "Simples/Model/Error.html", "name": "Simples\\Model\\Error", "doc": "Namespace Simples\\Model\\Error"},{"type": "Namespace", "link": "Simples/Model/Repository.html", "name": "Simples\\Model\\Repository", "doc": "Namespace Simples\\Model\\Repository"},{"type": "Namespace", "link": "Simples/Model/Repository/Resource.html", "name": "Simples\\Model\\Repository\\Resource", "doc": "Namespace Simples\\Model\\Repository\\Resource"},{"type": "Namespace", "link": "Simples/Model/Resource.html", "name": "Simples\\Model\\Resource", "doc": "Namespace Simples\\Model\\Resource"},{"type": "Namespace", "link": "Simples/Persistence.html", "name": "Simples\\Persistence", "doc": "Namespace Simples\\Persistence"},{"type": "Namespace", "link": "Simples/Persistence/Drivers.html", "name": "Simples\\Persistence\\Drivers", "doc": "Namespace Simples\\Persistence\\Drivers"},{"type": "Namespace", "link": "Simples/Persistence/Error.html", "name": "Simples\\Persistence\\Error", "doc": "Namespace Simples\\Persistence\\Error"},{"type": "Namespace", "link": "Simples/Persistence/SQL.html", "name": "Simples\\Persistence\\SQL", "doc": "Namespace Simples\\Persistence\\SQL"},{"type": "Namespace", "link": "Simples/Persistence/SQL/Error.html", "name": "Simples\\Persistence\\SQL\\Error", "doc": "Namespace Simples\\Persistence\\SQL\\Error"},{"type": "Namespace", "link": "Simples/Persistence/SQL/Operations.html", "name": "Simples\\Persistence\\SQL\\Operations", "doc": "Namespace Simples\\Persistence\\SQL\\Operations"},{"type": "Namespace", "link": "Simples/Route.html", "name": "Simples\\Route", "doc": "Namespace Simples\\Route"},{"type": "Namespace", "link": "Simples/Route/Console.html", "name": "Simples\\Route\\Console", "doc": "Namespace Simples\\Route\\Console"},{"type": "Namespace", "link": "Simples/Security.html", "name": "Simples\\Security", "doc": "Namespace Simples\\Security"},{"type": "Namespace", "link": "Simples/Template.html", "name": "Simples\\Template", "doc": "Namespace Simples\\Template"},{"type": "Namespace", "link": "Simples/Test.html", "name": "Simples\\Test", "doc": "Namespace Simples\\Test"},{"type": "Namespace", "link": "Simples/Test/Cases.html", "name": "Simples\\Test\\Cases", "doc": "Namespace Simples\\Test\\Cases"},{"type": "Namespace", "link": "Simples/Test/Error.html", "name": "Simples\\Test\\Error", "doc": "Namespace Simples\\Test\\Error"},{"type": "Namespace", "link": "Simples/Test/Headers.html", "name": "Simples\\Test\\Headers", "doc": "Namespace Simples\\Test\\Headers"},{"type": "Namespace", "link": "Simples/Test/Http.html", "name": "Simples\\Test\\Http", "doc": "Namespace Simples\\Test\\Http"},{"type": "Namespace", "link": "Simples/Test/Scope.html", "name": "Simples\\Test\\Scope", "doc": "Namespace Simples\\Test\\Scope"},{"type": "Namespace", "link": "Simples/Unit.html", "name": "Simples\\Unit", "doc": "Namespace Simples\\Unit"},
{"type": "Interface", "fromName": "Simples\\Http\\Contract", "fromLink": "Simples/Http/Contract.html", "link": "Simples/Http/Contract/Delegate.html", "name": "Simples\\Http\\Contract\\Delegate", "doc": ""Interface Delegate""},
{"type": "Method", "fromName": "Simples\\Http\\Contract\\Delegate", "fromLink": "Simples/Http/Contract/Delegate.html", "link": "Simples/Http/Contract/Delegate.html#method_process", "name": "Simples\\Http\\Contract\\Delegate::process", "doc": ""Dispatch the next available middleware and return the response.""},
{"type": "Interface", "fromName": "Simples\\Http\\Contract", "fromLink": "Simples/Http/Contract.html", "link": "Simples/Http/Contract/Middleware.html", "name": "Simples\\Http\\Contract\\Middleware", "doc": ""Interface Middleware""},
{"type": "Method", "fromName": "Simples\\Http\\Contract\\Middleware", "fromLink": "Simples/Http/Contract/Middleware.html", "link": "Simples/Http/Contract/Middleware.html#method_process", "name": "Simples\\Http\\Contract\\Middleware::process", "doc": ""Process an incoming server request and return a response, optionally delegating\nto the next middleware component to create the response.""},
{"type": "Interface", "fromName": "Simples\\Migration", "fromLink": "Simples/Migration.html", "link": "Simples/Migration/Driver.html", "name": "Simples\\Migration\\Driver", "doc": ""Interface Driver""},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_create", "name": "Simples\\Migration\\Driver::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_alter", "name": "Simples\\Migration\\Driver::alter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_drop", "name": "Simples\\Migration\\Driver::drop", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_add", "name": "Simples\\Migration\\Driver::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_change", "name": "Simples\\Migration\\Driver::change", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_remove", "name": "Simples\\Migration\\Driver::remove", "doc": """"},
{"type": "Interface", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Driver.html", "name": "Simples\\Persistence\\Driver", "doc": ""Interface Driver""},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_scope", "name": "Simples\\Persistence\\Driver::scope", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_start", "name": "Simples\\Persistence\\Driver::start", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_commit", "name": "Simples\\Persistence\\Driver::commit", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_rollback", "name": "Simples\\Persistence\\Driver::rollback", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_create", "name": "Simples\\Persistence\\Driver::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_read", "name": "Simples\\Persistence\\Driver::read", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_update", "name": "Simples\\Persistence\\Driver::update", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_destroy", "name": "Simples\\Persistence\\Driver::destroy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_run", "name": "Simples\\Persistence\\Driver::run", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_query", "name": "Simples\\Persistence\\Driver::query", "doc": """"},
{"type": "Class", "fromName": "Simples\\Console", "fromLink": "Simples/Console.html", "link": "Simples/Console/ControllerService.html", "name": "Simples\\Console\\ControllerService", "doc": ""Class ControllerService""},
{"type": "Method", "fromName": "Simples\\Console\\ControllerService", "fromLink": "Simples/Console/ControllerService.html", "link": "Simples/Console/ControllerService.html#method_others", "name": "Simples\\Console\\ControllerService::others", "doc": ""Ask for others layers""},
{"type": "Class", "fromName": "Simples\\Console", "fromLink": "Simples/Console.html", "link": "Simples/Console/FileManager.html", "name": "Simples\\Console\\FileManager", "doc": ""Class FileManager""},
{"type": "Method", "fromName": "Simples\\Console\\FileManager", "fromLink": "Simples/Console/FileManager.html", "link": "Simples/Console/FileManager.html#method___construct", "name": "Simples\\Console\\FileManager::__construct", "doc": ""FileManager constructor.""},
{"type": "Method", "fromName": "Simples\\Console\\FileManager", "fromLink": "Simples/Console/FileManager.html", "link": "Simples/Console/FileManager.html#method_execute", "name": "Simples\\Console\\FileManager::execute", "doc": ""Generate streams of layer(s)""},
{"type": "Class", "fromName": "Simples\\Console", "fromLink": "Simples/Console.html", "link": "Simples/Console/GeneratorService.html", "name": "Simples\\Console\\GeneratorService", "doc": ""Class GeneratorService""},
{"type": "Method", "fromName": "Simples\\Console\\GeneratorService", "fromLink": "Simples/Console/GeneratorService.html", "link": "Simples/Console/GeneratorService.html#method_execute", "name": "Simples\\Console\\GeneratorService::execute", "doc": """"},
{"type": "Method", "fromName": "Simples\\Console\\GeneratorService", "fromLink": "Simples/Console/GeneratorService.html", "link": "Simples/Console/GeneratorService.html#method_create", "name": "Simples\\Console\\GeneratorService::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Console\\GeneratorService", "fromLink": "Simples/Console/GeneratorService.html", "link": "Simples/Console/GeneratorService.html#method_explain", "name": "Simples\\Console\\GeneratorService::explain", "doc": """"},
{"type": "Method", "fromName": "Simples\\Console\\GeneratorService", "fromLink": "Simples/Console/GeneratorService.html", "link": "Simples/Console/GeneratorService.html#method_others", "name": "Simples\\Console\\GeneratorService::others", "doc": ""Ask for others layers""},
{"type": "Class", "fromName": "Simples\\Console", "fromLink": "Simples/Console.html", "link": "Simples/Console/HelpService.html", "name": "Simples\\Console\\HelpService", "doc": ""Class HelpService""},
{"type": "Method", "fromName": "Simples\\Console\\HelpService", "fromLink": "Simples/Console/HelpService.html", "link": "Simples/Console/HelpService.html#method_execute", "name": "Simples\\Console\\HelpService::execute", "doc": """"},
{"type": "Class", "fromName": "Simples\\Console\\Kernel", "fromLink": "Simples/Console/Kernel.html", "link": "Simples/Console/Kernel/App.html", "name": "Simples\\Console\\Kernel\\App", "doc": ""Class Console""},
{"type": "Method", "fromName": "Simples\\Console\\Kernel\\App", "fromLink": "Simples/Console/Kernel/App.html", "link": "Simples/Console/Kernel/App.html#method_boot", "name": "Simples\\Console\\Kernel\\App::boot", "doc": """"},
{"type": "Method", "fromName": "Simples\\Console\\Kernel\\App", "fromLink": "Simples/Console/Kernel/App.html", "link": "Simples/Console/Kernel/App.html#method_handle", "name": "Simples\\Console\\Kernel\\App::handle", "doc": """"},
{"type": "Class", "fromName": "Simples\\Console", "fromLink": "Simples/Console.html", "link": "Simples/Console/ModelService.html", "name": "Simples\\Console\\ModelService", "doc": ""Class ModelService""},
{"type": "Method", "fromName": "Simples\\Console\\ModelService", "fromLink": "Simples/Console/ModelService.html", "link": "Simples/Console/ModelService.html#method_others", "name": "Simples\\Console\\ModelService::others", "doc": ""Ask for others layers""},
{"type": "Class", "fromName": "Simples\\Console", "fromLink": "Simples/Console.html", "link": "Simples/Console/RepositoryService.html", "name": "Simples\\Console\\RepositoryService", "doc": ""Class RepositoryService""},
{"type": "Method", "fromName": "Simples\\Console\\RepositoryService", "fromLink": "Simples/Console/RepositoryService.html", "link": "Simples/Console/RepositoryService.html#method_others", "name": "Simples\\Console\\RepositoryService::others", "doc": ""Ask for others layers""},
{"type": "Class", "fromName": "Simples\\Console", "fromLink": "Simples/Console.html", "link": "Simples/Console/Service.html", "name": "Simples\\Console\\Service", "doc": ""Class Service""},
{"type": "Method", "fromName": "Simples\\Console\\Service", "fromLink": "Simples/Console/Service.html", "link": "Simples/Console/Service.html#method_execute", "name": "Simples\\Console\\Service::execute", "doc": """"},
{"type": "Class", "fromName": "Simples\\Controller", "fromLink": "Simples/Controller.html", "link": "Simples/Controller/ApiController.html", "name": "Simples\\Controller\\ApiController", "doc": ""Class ApiController""},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_answer", "name": "Simples\\Controller\\ApiController::answer", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_post", "name": "Simples\\Controller\\ApiController::post", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_search", "name": "Simples\\Controller\\ApiController::search", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_get", "name": "Simples\\Controller\\ApiController::get", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_put", "name": "Simples\\Controller\\ApiController::put", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_delete", "name": "Simples\\Controller\\ApiController::delete", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_recycle", "name": "Simples\\Controller\\ApiController::recycle", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_next", "name": "Simples\\Controller\\ApiController::next", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_previous", "name": "Simples\\Controller\\ApiController::previous", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_getData", "name": "Simples\\Controller\\ApiController::getData", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_fast", "name": "Simples\\Controller\\ApiController::fast", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ApiController", "fromLink": "Simples/Controller/ApiController.html", "link": "Simples/Controller/ApiController.html#method_applyFilter", "name": "Simples\\Controller\\ApiController::applyFilter", "doc": """"},
{"type": "Class", "fromName": "Simples\\Controller", "fromLink": "Simples/Controller.html", "link": "Simples/Controller/QueryController.html", "name": "Simples\\Controller\\QueryController", "doc": ""Class QueryController""},
{"type": "Method", "fromName": "Simples\\Controller\\QueryController", "fromLink": "Simples/Controller/QueryController.html", "link": "Simples/Controller/QueryController.html#method___construct", "name": "Simples\\Controller\\QueryController::__construct", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\QueryController", "fromLink": "Simples/Controller/QueryController.html", "link": "Simples/Controller/QueryController.html#method_notDestroyed", "name": "Simples\\Controller\\QueryController::notDestroyed", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\QueryController", "fromLink": "Simples/Controller/QueryController.html", "link": "Simples/Controller/QueryController.html#method_subQuery", "name": "Simples\\Controller\\QueryController::subQuery", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\QueryController", "fromLink": "Simples/Controller/QueryController.html", "link": "Simples/Controller/QueryController.html#method_answer", "name": "Simples\\Controller\\QueryController::answer", "doc": """"},
{"type": "Class", "fromName": "Simples\\Controller", "fromLink": "Simples/Controller.html", "link": "Simples/Controller/ViewController.html", "name": "Simples\\Controller\\ViewController", "doc": ""Class ViewController""},
{"type": "Method", "fromName": "Simples\\Controller\\ViewController", "fromLink": "Simples/Controller/ViewController.html", "link": "Simples/Controller/ViewController.html#method_view", "name": "Simples\\Controller\\ViewController::view", "doc": """"},
{"type": "Method", "fromName": "Simples\\Controller\\ViewController", "fromLink": "Simples/Controller/ViewController.html", "link": "Simples/Controller/ViewController.html#method_answer", "name": "Simples\\Controller\\ViewController::answer", "doc": """"},
{"type": "Class", "fromName": "Simples\\Data", "fromLink": "Simples/Data.html", "link": "Simples/Data/Collection.html", "name": "Simples\\Data\\Collection", "doc": ""Class Collection""},
{"type": "Method", "fromName": "Simples\\Data\\Collection", "fromLink": "Simples/Data/Collection.html", "link": "Simples/Data/Collection.html#method___construct", "name": "Simples\\Data\\Collection::__construct", "doc": ""Collection constructor.""},
{"type": "Method", "fromName": "Simples\\Data\\Collection", "fromLink": "Simples/Data/Collection.html", "link": "Simples/Data/Collection.html#method_make", "name": "Simples\\Data\\Collection::make", "doc": """"},
{"type": "Class", "fromName": "Simples\\Data\\Error", "fromLink": "Simples/Data/Error.html", "link": "Simples/Data/Error/SimplesRecordReadonlyError.html", "name": "Simples\\Data\\Error\\SimplesRecordReadonlyError", "doc": ""Class SimplesRecordReadonlyError""},
{"type": "Method", "fromName": "Simples\\Data\\Error\\SimplesRecordReadonlyError", "fromLink": "Simples/Data/Error/SimplesRecordReadonlyError.html", "link": "Simples/Data/Error/SimplesRecordReadonlyError.html#method___construct", "name": "Simples\\Data\\Error\\SimplesRecordReadonlyError::__construct", "doc": ""ResourceError constructor.""},
{"type": "Class", "fromName": "Simples\\Data\\Error", "fromLink": "Simples/Data/Error.html", "link": "Simples/Data/Error/SimplesResourceError.html", "name": "Simples\\Data\\Error\\SimplesResourceError", "doc": ""Class ResourceError""},
{"type": "Method", "fromName": "Simples\\Data\\Error\\SimplesResourceError", "fromLink": "Simples/Data/Error/SimplesResourceError.html", "link": "Simples/Data/Error/SimplesResourceError.html#method___construct", "name": "Simples\\Data\\Error\\SimplesResourceError::__construct", "doc": ""ResourceError constructor.""},
{"type": "Class", "fromName": "Simples\\Data\\Error", "fromLink": "Simples/Data/Error.html", "link": "Simples/Data/Error/SimplesValidationError.html", "name": "Simples\\Data\\Error\\SimplesValidationError", "doc": ""Class ValidationError""},
{"type": "Method", "fromName": "Simples\\Data\\Error\\SimplesValidationError", "fromLink": "Simples/Data/Error/SimplesValidationError.html", "link": "Simples/Data/Error/SimplesValidationError.html#method___construct", "name": "Simples\\Data\\Error\\SimplesValidationError::__construct", "doc": ""ValidationError constructor.""},
{"type": "Class", "fromName": "Simples\\Data", "fromLink": "Simples/Data.html", "link": "Simples/Data/Record.html", "name": "Simples\\Data\\Record", "doc": ""Class Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method___construct", "name": "Simples\\Data\\Record::__construct", "doc": ""Record constructor.""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_make", "name": "Simples\\Data\\Record::make", "doc": ""Factory constructor""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_parse", "name": "Simples\\Data\\Record::parse", "doc": ""Convert data into a Record instance""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method___get", "name": "Simples\\Data\\Record::__get", "doc": ""Get a value of Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method___set", "name": "Simples\\Data\\Record::__set", "doc": ""Set a value in Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_get", "name": "Simples\\Data\\Record::get", "doc": ""Get a value of the Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_set", "name": "Simples\\Data\\Record::set", "doc": ""Set a value of the Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_copy", "name": "Simples\\Data\\Record::copy", "doc": ""Copy the value of one index to another""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_remove", "name": "Simples\\Data\\Record::remove", "doc": ""Remove a key and associated value of the Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_setPrivate", "name": "Simples\\Data\\Record::setPrivate", "doc": ""Make a property hidden""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_setPublic", "name": "Simples\\Data\\Record::setPublic", "doc": ""Make a property be public""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_merge", "name": "Simples\\Data\\Record::merge", "doc": ""This method merge an array of data to record overriding the previously value of the keys""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_import", "name": "Simples\\Data\\Record::import", "doc": ""This method import an array of data to record keeping the previously value of the keys""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_update", "name": "Simples\\Data\\Record::update", "doc": ""Update all data in Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_keys", "name": "Simples\\Data\\Record::keys", "doc": ""Get the name of properties managed by Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_values", "name": "Simples\\Data\\Record::values", "doc": ""Get the values of properties managed by Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_just", "name": "Simples\\Data\\Record::just", "doc": ""Recover all values of the Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_all", "name": "Simples\\Data\\Record::all", "doc": ""Recover all values of the Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_indexOf", "name": "Simples\\Data\\Record::indexOf", "doc": ""Check is exists a property into Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_has", "name": "Simples\\Data\\Record::has", "doc": ""Alias to indexOf""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_isEditable", "name": "Simples\\Data\\Record::isEditable", "doc": ""Return info about editable property of the Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_isEmpty", "name": "Simples\\Data\\Record::isEmpty", "doc": ""Check if the Record is empty""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_size", "name": "Simples\\Data\\Record::size", "doc": ""Return the count of properties maneged by Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_toJSON", "name": "Simples\\Data\\Record::toJSON", "doc": ""Return a string of properties of the Record""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_getIterator", "name": "Simples\\Data\\Record::getIterator", "doc": ""Retrieve an external iterator""},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_expose", "name": "Simples\\Data\\Record::expose", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_on", "name": "Simples\\Data\\Record::on", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Record", "fromLink": "Simples/Data/Record.html", "link": "Simples/Data/Record.html#method_off", "name": "Simples\\Data\\Record::off", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Resources", "fromLink": "Simples/Data/Resources.html", "link": "Simples/Data/Resources/AccessTrait.html", "name": "Simples\\Data\\Resources\\AccessTrait", "doc": ""Trait AccessTrait""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\AccessTrait", "fromLink": "Simples/Data/Resources/AccessTrait.html", "link": "Simples/Data/Resources/AccessTrait.html#method_offsetExists", "name": "Simples\\Data\\Resources\\AccessTrait::offsetExists", "doc": ""Whether a offset exists""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\AccessTrait", "fromLink": "Simples/Data/Resources/AccessTrait.html", "link": "Simples/Data/Resources/AccessTrait.html#method_offsetGet", "name": "Simples\\Data\\Resources\\AccessTrait::offsetGet", "doc": ""Offset to retrieve""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\AccessTrait", "fromLink": "Simples/Data/Resources/AccessTrait.html", "link": "Simples/Data/Resources/AccessTrait.html#method_offsetSet", "name": "Simples\\Data\\Resources\\AccessTrait::offsetSet", "doc": ""Offset to set""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\AccessTrait", "fromLink": "Simples/Data/Resources/AccessTrait.html", "link": "Simples/Data/Resources/AccessTrait.html#method_offsetUnset", "name": "Simples\\Data\\Resources\\AccessTrait::offsetUnset", "doc": ""Offset to unset""},
{"type": "Trait", "fromName": "Simples\\Data\\Resources", "fromLink": "Simples/Data/Resources.html", "link": "Simples/Data/Resources/GroupTrait.html", "name": "Simples\\Data\\Resources\\GroupTrait", "doc": ""Trait Group""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\GroupTrait", "fromLink": "Simples/Data/Resources/GroupTrait.html", "link": "Simples/Data/Resources/GroupTrait.html#method_groupBy", "name": "Simples\\Data\\Resources\\GroupTrait::groupBy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\GroupTrait", "fromLink": "Simples/Data/Resources/GroupTrait.html", "link": "Simples/Data/Resources/GroupTrait.html#method_groupReduces", "name": "Simples\\Data\\Resources\\GroupTrait::groupReduces", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Resources", "fromLink": "Simples/Data/Resources.html", "link": "Simples/Data/Resources/IteratorTrait.html", "name": "Simples\\Data\\Resources\\IteratorTrait", "doc": ""Trait CollectionIterator""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\IteratorTrait", "fromLink": "Simples/Data/Resources/IteratorTrait.html", "link": "Simples/Data/Resources/IteratorTrait.html#method_current", "name": "Simples\\Data\\Resources\\IteratorTrait::current", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\IteratorTrait", "fromLink": "Simples/Data/Resources/IteratorTrait.html", "link": "Simples/Data/Resources/IteratorTrait.html#method_rewind", "name": "Simples\\Data\\Resources\\IteratorTrait::rewind", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\IteratorTrait", "fromLink": "Simples/Data/Resources/IteratorTrait.html", "link": "Simples/Data/Resources/IteratorTrait.html#method_key", "name": "Simples\\Data\\Resources\\IteratorTrait::key", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\IteratorTrait", "fromLink": "Simples/Data/Resources/IteratorTrait.html", "link": "Simples/Data/Resources/IteratorTrait.html#method_next", "name": "Simples\\Data\\Resources\\IteratorTrait::next", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\IteratorTrait", "fromLink": "Simples/Data/Resources/IteratorTrait.html", "link": "Simples/Data/Resources/IteratorTrait.html#method_valid", "name": "Simples\\Data\\Resources\\IteratorTrait::valid", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Resources", "fromLink": "Simples/Data/Resources.html", "link": "Simples/Data/Resources/ManipulationTrait.html", "name": "Simples\\Data\\Resources\\ManipulationTrait", "doc": ""Trait CollectionManipulation""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ManipulationTrait", "fromLink": "Simples/Data/Resources/ManipulationTrait.html", "link": "Simples/Data/Resources/ManipulationTrait.html#method_each", "name": "Simples\\Data\\Resources\\ManipulationTrait::each", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ManipulationTrait", "fromLink": "Simples/Data/Resources/ManipulationTrait.html", "link": "Simples/Data/Resources/ManipulationTrait.html#method_map", "name": "Simples\\Data\\Resources\\ManipulationTrait::map", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ManipulationTrait", "fromLink": "Simples/Data/Resources/ManipulationTrait.html", "link": "Simples/Data/Resources/ManipulationTrait.html#method_filter", "name": "Simples\\Data\\Resources\\ManipulationTrait::filter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ManipulationTrait", "fromLink": "Simples/Data/Resources/ManipulationTrait.html", "link": "Simples/Data/Resources/ManipulationTrait.html#method_size", "name": "Simples\\Data\\Resources\\ManipulationTrait::size", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ManipulationTrait", "fromLink": "Simples/Data/Resources/ManipulationTrait.html", "link": "Simples/Data/Resources/ManipulationTrait.html#method_length", "name": "Simples\\Data\\Resources\\ManipulationTrait::length", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ManipulationTrait", "fromLink": "Simples/Data/Resources/ManipulationTrait.html", "link": "Simples/Data/Resources/ManipulationTrait.html#method_reduce", "name": "Simples\\Data\\Resources\\ManipulationTrait::reduce", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Resources", "fromLink": "Simples/Data/Resources.html", "link": "Simples/Data/Resources/ModelTrait.html", "name": "Simples\\Data\\Resources\\ModelTrait", "doc": ""Trait CollectionModel""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ModelTrait", "fromLink": "Simples/Data/Resources/ModelTrait.html", "link": "Simples/Data/Resources/ModelTrait.html#method_model", "name": "Simples\\Data\\Resources\\ModelTrait::model", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ModelTrait", "fromLink": "Simples/Data/Resources/ModelTrait.html", "link": "Simples/Data/Resources/ModelTrait.html#method___get", "name": "Simples\\Data\\Resources\\ModelTrait::__get", "doc": ""is utilized for reading data from inaccessible members.""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\ModelTrait", "fromLink": "Simples/Data/Resources/ModelTrait.html", "link": "Simples/Data/Resources/ModelTrait.html#method___call", "name": "Simples\\Data\\Resources\\ModelTrait::__call", "doc": ""Ex.:\n $result = Collection::make([new Example('apple'), new Example('orange')])\n ->map->each->getFruit()->getRecords();\n var_dump($result);\n [\"elppa\", \"egnaro\"]""},
{"type": "Trait", "fromName": "Simples\\Data\\Resources", "fromLink": "Simples/Data/Resources.html", "link": "Simples/Data/Resources/MutationTrait.html", "name": "Simples\\Data\\Resources\\MutationTrait", "doc": ""Trait CollectionMutation""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\MutationTrait", "fromLink": "Simples/Data/Resources/MutationTrait.html", "link": "Simples/Data/Resources/MutationTrait.html#method_on", "name": "Simples\\Data\\Resources\\MutationTrait::on", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\MutationTrait", "fromLink": "Simples/Data/Resources/MutationTrait.html", "link": "Simples/Data/Resources/MutationTrait.html#method_off", "name": "Simples\\Data\\Resources\\MutationTrait::off", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Resources", "fromLink": "Simples/Data/Resources.html", "link": "Simples/Data/Resources/RecordsTrait.html", "name": "Simples\\Data\\Resources\\RecordsTrait", "doc": ""Trait CollectionRecords""},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\RecordsTrait", "fromLink": "Simples/Data/Resources/RecordsTrait.html", "link": "Simples/Data/Resources/RecordsTrait.html#method_all", "name": "Simples\\Data\\Resources\\RecordsTrait::all", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\RecordsTrait", "fromLink": "Simples/Data/Resources/RecordsTrait.html", "link": "Simples/Data/Resources/RecordsTrait.html#method_getRecords", "name": "Simples\\Data\\Resources\\RecordsTrait::getRecords", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\RecordsTrait", "fromLink": "Simples/Data/Resources/RecordsTrait.html", "link": "Simples/Data/Resources/RecordsTrait.html#method_records", "name": "Simples\\Data\\Resources\\RecordsTrait::records", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Resources\\RecordsTrait", "fromLink": "Simples/Data/Resources/RecordsTrait.html", "link": "Simples/Data/Resources/RecordsTrait.html#method_expose", "name": "Simples\\Data\\Resources\\RecordsTrait::expose", "doc": """"},
{"type": "Class", "fromName": "Simples\\Data", "fromLink": "Simples/Data.html", "link": "Simples/Data/Validation.html", "name": "Simples\\Data\\Validation", "doc": ""Class Validation""},
{"type": "Method", "fromName": "Simples\\Data\\Validation", "fromLink": "Simples/Data/Validation.html", "link": "Simples/Data/Validation.html#method___construct", "name": "Simples\\Data\\Validation::__construct", "doc": ""Validation constructor.""},
{"type": "Method", "fromName": "Simples\\Data\\Validation", "fromLink": "Simples/Data/Validation.html", "link": "Simples/Data/Validation.html#method_add", "name": "Simples\\Data\\Validation::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validation", "fromLink": "Simples/Data/Validation.html", "link": "Simples/Data/Validation.html#method_set", "name": "Simples\\Data\\Validation::set", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validation", "fromLink": "Simples/Data/Validation.html", "link": "Simples/Data/Validation.html#method_rules", "name": "Simples\\Data\\Validation::rules", "doc": """"},
{"type": "Class", "fromName": "Simples\\Data", "fromLink": "Simples/Data.html", "link": "Simples/Data/Validator.html", "name": "Simples\\Data\\Validator", "doc": ""Class Validator""},
{"type": "Method", "fromName": "Simples\\Data\\Validator", "fromLink": "Simples/Data/Validator.html", "link": "Simples/Data/Validator.html#method_isRequired", "name": "Simples\\Data\\Validator::isRequired", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validator", "fromLink": "Simples/Data/Validator.html", "link": "Simples/Data/Validator.html#method_rule", "name": "Simples\\Data\\Validator::rule", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validator", "fromLink": "Simples/Data/Validator.html", "link": "Simples/Data/Validator.html#method_apply", "name": "Simples\\Data\\Validator::apply", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validator", "fromLink": "Simples/Data/Validator.html", "link": "Simples/Data/Validator.html#method_applyRules", "name": "Simples\\Data\\Validator::applyRules", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validator", "fromLink": "Simples/Data/Validator.html", "link": "Simples/Data/Validator.html#method_parse", "name": "Simples\\Data\\Validator::parse", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Validators", "fromLink": "Simples/Data/Validators.html", "link": "Simples/Data/Validators/DatabaseValidator.html", "name": "Simples\\Data\\Validators\\DatabaseValidator", "doc": ""Class DateValidator""},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DatabaseValidator", "fromLink": "Simples/Data/Validators/DatabaseValidator.html", "link": "Simples/Data/Validators/DatabaseValidator.html#method_isField", "name": "Simples\\Data\\Validators\\DatabaseValidator::isField", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DatabaseValidator", "fromLink": "Simples/Data/Validators/DatabaseValidator.html", "link": "Simples/Data/Validators/DatabaseValidator.html#method_isNullable", "name": "Simples\\Data\\Validators\\DatabaseValidator::isNullable", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DatabaseValidator", "fromLink": "Simples/Data/Validators/DatabaseValidator.html", "link": "Simples/Data/Validators/DatabaseValidator.html#method_isReject", "name": "Simples\\Data\\Validators\\DatabaseValidator::isReject", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DatabaseValidator", "fromLink": "Simples/Data/Validators/DatabaseValidator.html", "link": "Simples/Data/Validators/DatabaseValidator.html#method_isUnique", "name": "Simples\\Data\\Validators\\DatabaseValidator::isUnique", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Validators", "fromLink": "Simples/Data/Validators.html", "link": "Simples/Data/Validators/DateValidator.html", "name": "Simples\\Data\\Validators\\DateValidator", "doc": ""Class DateValidator""},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DateValidator", "fromLink": "Simples/Data/Validators/DateValidator.html", "link": "Simples/Data/Validators/DateValidator.html#method_isDate", "name": "Simples\\Data\\Validators\\DateValidator::isDate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DateValidator", "fromLink": "Simples/Data/Validators/DateValidator.html", "link": "Simples/Data/Validators/DateValidator.html#method_isDatetime", "name": "Simples\\Data\\Validators\\DateValidator::isDatetime", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DateValidator", "fromLink": "Simples/Data/Validators/DateValidator.html", "link": "Simples/Data/Validators/DateValidator.html#method_isTime", "name": "Simples\\Data\\Validators\\DateValidator::isTime", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DateValidator", "fromLink": "Simples/Data/Validators/DateValidator.html", "link": "Simples/Data/Validators/DateValidator.html#method_isDateFormat", "name": "Simples\\Data\\Validators\\DateValidator::isDateFormat", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\DateValidator", "fromLink": "Simples/Data/Validators/DateValidator.html", "link": "Simples/Data/Validators/DateValidator.html#method_isTimezone", "name": "Simples\\Data\\Validators\\DateValidator::isTimezone", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Validators", "fromLink": "Simples/Data/Validators.html", "link": "Simples/Data/Validators/FileValidator.html", "name": "Simples\\Data\\Validators\\FileValidator", "doc": ""Class FileValidator""},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\FileValidator", "fromLink": "Simples/Data/Validators/FileValidator.html", "link": "Simples/Data/Validators/FileValidator.html#method_isFile", "name": "Simples\\Data\\Validators\\FileValidator::isFile", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\FileValidator", "fromLink": "Simples/Data/Validators/FileValidator.html", "link": "Simples/Data/Validators/FileValidator.html#method_isImage", "name": "Simples\\Data\\Validators\\FileValidator::isImage", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\FileValidator", "fromLink": "Simples/Data/Validators/FileValidator.html", "link": "Simples/Data/Validators/FileValidator.html#method_isMimes", "name": "Simples\\Data\\Validators\\FileValidator::isMimes", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\FileValidator", "fromLink": "Simples/Data/Validators/FileValidator.html", "link": "Simples/Data/Validators/FileValidator.html#method_isMimetypes", "name": "Simples\\Data\\Validators\\FileValidator::isMimetypes", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Validators", "fromLink": "Simples/Data/Validators.html", "link": "Simples/Data/Validators/LogicalValidator.html", "name": "Simples\\Data\\Validators\\LogicalValidator", "doc": ""Class LogicalValidator""},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isAccepted", "name": "Simples\\Data\\Validators\\LogicalValidator::isAccepted", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isActive", "name": "Simples\\Data\\Validators\\LogicalValidator::isActive", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isAfter", "name": "Simples\\Data\\Validators\\LogicalValidator::isAfter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isAlpha", "name": "Simples\\Data\\Validators\\LogicalValidator::isAlpha", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isAlphaDash", "name": "Simples\\Data\\Validators\\LogicalValidator::isAlphaDash", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isAlphaNumeric", "name": "Simples\\Data\\Validators\\LogicalValidator::isAlphaNumeric", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isArray", "name": "Simples\\Data\\Validators\\LogicalValidator::isArray", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isBefore", "name": "Simples\\Data\\Validators\\LogicalValidator::isBefore", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isBetween", "name": "Simples\\Data\\Validators\\LogicalValidator::isBetween", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isBoolean", "name": "Simples\\Data\\Validators\\LogicalValidator::isBoolean", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isConfirmed", "name": "Simples\\Data\\Validators\\LogicalValidator::isConfirmed", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isDifferent", "name": "Simples\\Data\\Validators\\LogicalValidator::isDifferent", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isDimensions", "name": "Simples\\Data\\Validators\\LogicalValidator::isDimensions", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isDistinct", "name": "Simples\\Data\\Validators\\LogicalValidator::isDistinct", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isExisting", "name": "Simples\\Data\\Validators\\LogicalValidator::isExisting", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isNot", "name": "Simples\\Data\\Validators\\LogicalValidator::isNot", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isPresent", "name": "Simples\\Data\\Validators\\LogicalValidator::isPresent", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isRegex", "name": "Simples\\Data\\Validators\\LogicalValidator::isRegex", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isRequiredIf", "name": "Simples\\Data\\Validators\\LogicalValidator::isRequiredIf", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\LogicalValidator", "fromLink": "Simples/Data/Validators/LogicalValidator.html", "link": "Simples/Data/Validators/LogicalValidator.html#method_isSame", "name": "Simples\\Data\\Validators\\LogicalValidator::isSame", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Validators", "fromLink": "Simples/Data/Validators.html", "link": "Simples/Data/Validators/NumberValidator.html", "name": "Simples\\Data\\Validators\\NumberValidator", "doc": ""Class NumberValidator""},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\NumberValidator", "fromLink": "Simples/Data/Validators/NumberValidator.html", "link": "Simples/Data/Validators/NumberValidator.html#method_isDigits", "name": "Simples\\Data\\Validators\\NumberValidator::isDigits", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\NumberValidator", "fromLink": "Simples/Data/Validators/NumberValidator.html", "link": "Simples/Data/Validators/NumberValidator.html#method_isDigitsBetween", "name": "Simples\\Data\\Validators\\NumberValidator::isDigitsBetween", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\NumberValidator", "fromLink": "Simples/Data/Validators/NumberValidator.html", "link": "Simples/Data/Validators/NumberValidator.html#method_isFloat", "name": "Simples\\Data\\Validators\\NumberValidator::isFloat", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\NumberValidator", "fromLink": "Simples/Data/Validators/NumberValidator.html", "link": "Simples/Data/Validators/NumberValidator.html#method_isInteger", "name": "Simples\\Data\\Validators\\NumberValidator::isInteger", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\NumberValidator", "fromLink": "Simples/Data/Validators/NumberValidator.html", "link": "Simples/Data/Validators/NumberValidator.html#method_isMin", "name": "Simples\\Data\\Validators\\NumberValidator::isMin", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\NumberValidator", "fromLink": "Simples/Data/Validators/NumberValidator.html", "link": "Simples/Data/Validators/NumberValidator.html#method_isMax", "name": "Simples\\Data\\Validators\\NumberValidator::isMax", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\NumberValidator", "fromLink": "Simples/Data/Validators/NumberValidator.html", "link": "Simples/Data/Validators/NumberValidator.html#method_isNumeric", "name": "Simples\\Data\\Validators\\NumberValidator::isNumeric", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Data\\Validators", "fromLink": "Simples/Data/Validators.html", "link": "Simples/Data/Validators/StringValidator.html", "name": "Simples\\Data\\Validators\\StringValidator", "doc": ""Class StringValidator""},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\StringValidator", "fromLink": "Simples/Data/Validators/StringValidator.html", "link": "Simples/Data/Validators/StringValidator.html#method_isEmail", "name": "Simples\\Data\\Validators\\StringValidator::isEmail", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\StringValidator", "fromLink": "Simples/Data/Validators/StringValidator.html", "link": "Simples/Data/Validators/StringValidator.html#method_isString", "name": "Simples\\Data\\Validators\\StringValidator::isString", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\StringValidator", "fromLink": "Simples/Data/Validators/StringValidator.html", "link": "Simples/Data/Validators/StringValidator.html#method_isText", "name": "Simples\\Data\\Validators\\StringValidator::isText", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\StringValidator", "fromLink": "Simples/Data/Validators/StringValidator.html", "link": "Simples/Data/Validators/StringValidator.html#method_isUrl", "name": "Simples\\Data\\Validators\\StringValidator::isUrl", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\StringValidator", "fromLink": "Simples/Data/Validators/StringValidator.html", "link": "Simples/Data/Validators/StringValidator.html#method_isSize", "name": "Simples\\Data\\Validators\\StringValidator::isSize", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\StringValidator", "fromLink": "Simples/Data/Validators/StringValidator.html", "link": "Simples/Data/Validators/StringValidator.html#method_isIp", "name": "Simples\\Data\\Validators\\StringValidator::isIp", "doc": """"},
{"type": "Method", "fromName": "Simples\\Data\\Validators\\StringValidator", "fromLink": "Simples/Data/Validators/StringValidator.html", "link": "Simples/Data/Validators/StringValidator.html#method_isJson", "name": "Simples\\Data\\Validators\\StringValidator::isJson", "doc": """"},
{"type": "Class", "fromName": "Simples\\Error", "fromLink": "Simples/Error.html", "link": "Simples/Error/NotFoundExceptionInterface.html", "name": "Simples\\Error\\NotFoundExceptionInterface", "doc": ""Class NotFoundExceptionInterface""},
{"type": "Class", "fromName": "Simples\\Error", "fromLink": "Simples/Error.html", "link": "Simples/Error/SimplesAlreadyRegisteredError.html", "name": "Simples\\Error\\SimplesAlreadyRegisteredError", "doc": ""Class SimplesAlreadyRegisteredError""},
{"type": "Class", "fromName": "Simples\\Error", "fromLink": "Simples/Error.html", "link": "Simples/Error/SimplesRunTimeError.html", "name": "Simples\\Error\\SimplesRunTimeError", "doc": ""Class RunTimeError""},
{"type": "Method", "fromName": "Simples\\Error\\SimplesRunTimeError", "fromLink": "Simples/Error/SimplesRunTimeError.html", "link": "Simples/Error/SimplesRunTimeError.html#method___construct", "name": "Simples\\Error\\SimplesRunTimeError::__construct", "doc": ""RunTimeError constructor.""},
{"type": "Method", "fromName": "Simples\\Error\\SimplesRunTimeError", "fromLink": "Simples/Error/SimplesRunTimeError.html", "link": "Simples/Error/SimplesRunTimeError.html#method_getDetails", "name": "Simples\\Error\\SimplesRunTimeError::getDetails", "doc": """"},
{"type": "Method", "fromName": "Simples\\Error\\SimplesRunTimeError", "fromLink": "Simples/Error/SimplesRunTimeError.html", "link": "Simples/Error/SimplesRunTimeError.html#method_getStatus", "name": "Simples\\Error\\SimplesRunTimeError::getStatus", "doc": """"},
{"type": "Method", "fromName": "Simples\\Error\\SimplesRunTimeError", "fromLink": "Simples/Error/SimplesRunTimeError.html", "link": "Simples/Error/SimplesRunTimeError.html#method_getContext", "name": "Simples\\Error\\SimplesRunTimeError::getContext", "doc": """"},
{"type": "Method", "fromName": "Simples\\Error\\SimplesRunTimeError", "fromLink": "Simples/Error/SimplesRunTimeError.html", "link": "Simples/Error/SimplesRunTimeError.html#method_parse", "name": "Simples\\Error\\SimplesRunTimeError::parse", "doc": """"},
{"type": "Class", "fromName": "Simples\\Helper", "fromLink": "Simples/Helper.html", "link": "Simples/Helper/Date.html", "name": "Simples\\Helper\\Date", "doc": ""Class Date""},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method___construct", "name": "Simples\\Helper\\Date::__construct", "doc": ""Date constructor.""},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_create", "name": "Simples\\Helper\\Date::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_day", "name": "Simples\\Helper\\Date::day", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_week", "name": "Simples\\Helper\\Date::week", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_month", "name": "Simples\\Helper\\Date::month", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_quarter", "name": "Simples\\Helper\\Date::quarter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_year", "name": "Simples\\Helper\\Date::year", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_today", "name": "Simples\\Helper\\Date::today", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_now", "name": "Simples\\Helper\\Date::now", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_isValid", "name": "Simples\\Helper\\Date::isValid", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_nextMonth", "name": "Simples\\Helper\\Date::nextMonth", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_time", "name": "Simples\\Helper\\Date::time", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_addDays", "name": "Simples\\Helper\\Date::addDays", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_diffDays", "name": "Simples\\Helper\\Date::diffDays", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_normalize", "name": "Simples\\Helper\\Date::normalize", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method_toString", "name": "Simples\\Helper\\Date::toString", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Date", "fromLink": "Simples/Helper/Date.html", "link": "Simples/Helper/Date.html#method___toString", "name": "Simples\\Helper\\Date::__toString", "doc": """"},
{"type": "Class", "fromName": "Simples\\Helper", "fromLink": "Simples/Helper.html", "link": "Simples/Helper/Datetime.html", "name": "Simples\\Helper\\Datetime", "doc": ""Class Datetime""},
{"type": "Method", "fromName": "Simples\\Helper\\Datetime", "fromLink": "Simples/Helper/Datetime.html", "link": "Simples/Helper/Datetime.html#method_isValid", "name": "Simples\\Helper\\Datetime::isValid", "doc": """"},
{"type": "Class", "fromName": "Simples\\Helper", "fromLink": "Simples/Helper.html", "link": "Simples/Helper/Directory.html", "name": "Simples\\Helper\\Directory", "doc": ""Class Directory""},
{"type": "Method", "fromName": "Simples\\Helper\\Directory", "fromLink": "Simples/Helper/Directory.html", "link": "Simples/Helper/Directory.html#method_count", "name": "Simples\\Helper\\Directory::count", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Directory", "fromLink": "Simples/Helper/Directory.html", "link": "Simples/Helper/Directory.html#method_exists", "name": "Simples\\Helper\\Directory::exists", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Directory", "fromLink": "Simples/Helper/Directory.html", "link": "Simples/Helper/Directory.html#method_make", "name": "Simples\\Helper\\Directory::make", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Directory", "fromLink": "Simples/Helper/Directory.html", "link": "Simples/Helper/Directory.html#method_remove", "name": "Simples\\Helper\\Directory::remove", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Directory", "fromLink": "Simples/Helper/Directory.html", "link": "Simples/Helper/Directory.html#method_rename", "name": "Simples\\Helper\\Directory::rename", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Directory", "fromLink": "Simples/Helper/Directory.html", "link": "Simples/Helper/Directory.html#method_getFiles", "name": "Simples\\Helper\\Directory::getFiles", "doc": """"},
{"type": "Class", "fromName": "Simples\\Helper", "fromLink": "Simples/Helper.html", "link": "Simples/Helper/File.html", "name": "Simples\\Helper\\File", "doc": ""Class File""},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_exists", "name": "Simples\\Helper\\File::exists", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_isWritable", "name": "Simples\\Helper\\File::isWritable", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_write", "name": "Simples\\Helper\\File::write", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_read", "name": "Simples\\Helper\\File::read", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_escape", "name": "Simples\\Helper\\File::escape", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_name", "name": "Simples\\Helper\\File::name", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_extension", "name": "Simples\\Helper\\File::extension", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_mimeType", "name": "Simples\\Helper\\File::mimeType", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_destroy", "name": "Simples\\Helper\\File::destroy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_copy", "name": "Simples\\Helper\\File::copy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\File", "fromLink": "Simples/Helper/File.html", "link": "Simples/Helper/File.html#method_move", "name": "Simples\\Helper\\File::move", "doc": """"},
{"type": "Class", "fromName": "Simples\\Helper", "fromLink": "Simples/Helper.html", "link": "Simples/Helper/JSON.html", "name": "Simples\\Helper\\JSON", "doc": ""Class Json""},
{"type": "Method", "fromName": "Simples\\Helper\\JSON", "fromLink": "Simples/Helper/JSON.html", "link": "Simples/Helper/JSON.html#method_encode", "name": "Simples\\Helper\\JSON::encode", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\JSON", "fromLink": "Simples/Helper/JSON.html", "link": "Simples/Helper/JSON.html#method_decode", "name": "Simples\\Helper\\JSON::decode", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\JSON", "fromLink": "Simples/Helper/JSON.html", "link": "Simples/Helper/JSON.html#method_isJson", "name": "Simples\\Helper\\JSON::isJson", "doc": """"},
{"type": "Class", "fromName": "Simples\\Helper", "fromLink": "Simples/Helper.html", "link": "Simples/Helper/Text.html", "name": "Simples\\Helper\\Text", "doc": ""Class Text""},
{"type": "Method", "fromName": "Simples\\Helper\\Text", "fromLink": "Simples/Helper/Text.html", "link": "Simples/Helper/Text.html#method_replace", "name": "Simples\\Helper\\Text::replace", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Text", "fromLink": "Simples/Helper/Text.html", "link": "Simples/Helper/Text.html#method_replacex", "name": "Simples\\Helper\\Text::replacex", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Text", "fromLink": "Simples/Helper/Text.html", "link": "Simples/Helper/Text.html#method_pad", "name": "Simples\\Helper\\Text::pad", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Text", "fromLink": "Simples/Helper/Text.html", "link": "Simples/Helper/Text.html#method_replacement", "name": "Simples\\Helper\\Text::replacement", "doc": """"},
{"type": "Method", "fromName": "Simples\\Helper\\Text", "fromLink": "Simples/Helper/Text.html", "link": "Simples/Helper/Text.html#method_contains", "name": "Simples\\Helper\\Text::contains", "doc": """"},
{"type": "Class", "fromName": "Simples\\Helper", "fromLink": "Simples/Helper.html", "link": "Simples/Helper/Time.html", "name": "Simples\\Helper\\Time", "doc": ""Class Time""},
{"type": "Method", "fromName": "Simples\\Helper\\Time", "fromLink": "Simples/Helper/Time.html", "link": "Simples/Helper/Time.html#method_isValid", "name": "Simples\\Helper\\Time::isValid", "doc": """"},
{"type": "Class", "fromName": "Simples\\Http\\Contract", "fromLink": "Simples/Http/Contract.html", "link": "Simples/Http/Contract/Delegate.html", "name": "Simples\\Http\\Contract\\Delegate", "doc": ""Interface Delegate""},
{"type": "Method", "fromName": "Simples\\Http\\Contract\\Delegate", "fromLink": "Simples/Http/Contract/Delegate.html", "link": "Simples/Http/Contract/Delegate.html#method_process", "name": "Simples\\Http\\Contract\\Delegate::process", "doc": ""Dispatch the next available middleware and return the response.""},
{"type": "Class", "fromName": "Simples\\Http\\Contract", "fromLink": "Simples/Http/Contract.html", "link": "Simples/Http/Contract/Middleware.html", "name": "Simples\\Http\\Contract\\Middleware", "doc": ""Interface Middleware""},
{"type": "Method", "fromName": "Simples\\Http\\Contract\\Middleware", "fromLink": "Simples/Http/Contract/Middleware.html", "link": "Simples/Http/Contract/Middleware.html#method_process", "name": "Simples\\Http\\Contract\\Middleware::process", "doc": ""Process an incoming server request and return a response, optionally delegating\nto the next middleware component to create the response.""},
{"type": "Class", "fromName": "Simples\\Http", "fromLink": "Simples/Http.html", "link": "Simples/Http/Controller.html", "name": "Simples\\Http\\Controller", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_boot", "name": "Simples\\Http\\Controller::boot", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answer", "name": "Simples\\Http\\Controller::answer", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_request", "name": "Simples\\Http\\Controller::request", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_response", "name": "Simples\\Http\\Controller::response", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_match", "name": "Simples\\Http\\Controller::match", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_input", "name": "Simples\\Http\\Controller::input", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_setLog", "name": "Simples\\Http\\Controller::setLog", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method___call", "name": "Simples\\Http\\Controller::__call", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerContinue", "name": "Simples\\Http\\Controller::answerContinue", "doc": ""\/\/ 100""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerProcessing", "name": "Simples\\Http\\Controller::answerProcessing", "doc": ""\/\/ 102""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerOK", "name": "Simples\\Http\\Controller::answerOK", "doc": ""\/\/ 200""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerCreated", "name": "Simples\\Http\\Controller::answerCreated", "doc": ""\/\/ 201""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerAccepted", "name": "Simples\\Http\\Controller::answerAccepted", "doc": ""\/\/ 202""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNonAuthoritativeInformation", "name": "Simples\\Http\\Controller::answerNonAuthoritativeInformation", "doc": ""\/\/ 203""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNoContent", "name": "Simples\\Http\\Controller::answerNoContent", "doc": ""\/\/ 204""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerResetContent", "name": "Simples\\Http\\Controller::answerResetContent", "doc": ""\/\/ 205""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerPartialContent", "name": "Simples\\Http\\Controller::answerPartialContent", "doc": ""\/\/ 206""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerMultiStatus", "name": "Simples\\Http\\Controller::answerMultiStatus", "doc": ""\/\/ 207""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerAlreadyReported", "name": "Simples\\Http\\Controller::answerAlreadyReported", "doc": ""\/\/ 208""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerFound", "name": "Simples\\Http\\Controller::answerFound", "doc": ""\/\/ 302""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerSeeOther", "name": "Simples\\Http\\Controller::answerSeeOther", "doc": ""\/\/ 303""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNotModified", "name": "Simples\\Http\\Controller::answerNotModified", "doc": ""\/\/ 304""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerUseProxy", "name": "Simples\\Http\\Controller::answerUseProxy", "doc": ""\/\/ 305""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerTemporaryRedirect", "name": "Simples\\Http\\Controller::answerTemporaryRedirect", "doc": ""\/\/ 307""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerBadRequest", "name": "Simples\\Http\\Controller::answerBadRequest", "doc": ""\/\/ 400""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerUnauthorized", "name": "Simples\\Http\\Controller::answerUnauthorized", "doc": ""\/\/ 401""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerPaymentRequired", "name": "Simples\\Http\\Controller::answerPaymentRequired", "doc": ""\/\/ 402""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerForbidden", "name": "Simples\\Http\\Controller::answerForbidden", "doc": ""\/\/ 403""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNotFound", "name": "Simples\\Http\\Controller::answerNotFound", "doc": ""\/\/ 404""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerMethodNotAllowed", "name": "Simples\\Http\\Controller::answerMethodNotAllowed", "doc": ""\/\/ 405""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNotAcceptable", "name": "Simples\\Http\\Controller::answerNotAcceptable", "doc": ""\/\/ 406""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerProxyAuthenticationRequired", "name": "Simples\\Http\\Controller::answerProxyAuthenticationRequired", "doc": ""\/\/ 407""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerRequestTimeout", "name": "Simples\\Http\\Controller::answerRequestTimeout", "doc": ""\/\/ 408""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerConflict", "name": "Simples\\Http\\Controller::answerConflict", "doc": ""\/\/ 409""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerGone", "name": "Simples\\Http\\Controller::answerGone", "doc": ""\/\/ 410""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerLengthRequired", "name": "Simples\\Http\\Controller::answerLengthRequired", "doc": ""\/\/ 411""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerPreconditionFailed", "name": "Simples\\Http\\Controller::answerPreconditionFailed", "doc": ""\/\/ 412""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerRequestEntityTooLarge", "name": "Simples\\Http\\Controller::answerRequestEntityTooLarge", "doc": ""\/\/ 413""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerRequestURITooLarge", "name": "Simples\\Http\\Controller::answerRequestURITooLarge", "doc": ""\/\/ 414""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerUnsupportedMediaType", "name": "Simples\\Http\\Controller::answerUnsupportedMediaType", "doc": ""\/\/ 415""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerRequestedRangeNotSatisfiable", "name": "Simples\\Http\\Controller::answerRequestedRangeNotSatisfiable", "doc": ""\/\/ 416""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerExpectationFailed", "name": "Simples\\Http\\Controller::answerExpectationFailed", "doc": ""\/\/ 417""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerIAmATeapot", "name": "Simples\\Http\\Controller::answerIAmATeapot", "doc": ""\/\/ 418""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNotProcessableEntity", "name": "Simples\\Http\\Controller::answerNotProcessableEntity", "doc": ""\/\/ 422""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerLocked", "name": "Simples\\Http\\Controller::answerLocked", "doc": ""\/\/ 423""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerFailedDependency", "name": "Simples\\Http\\Controller::answerFailedDependency", "doc": ""\/\/ 424""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerUnorderedCollection", "name": "Simples\\Http\\Controller::answerUnorderedCollection", "doc": ""\/\/ 425""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerUpgradeRequired", "name": "Simples\\Http\\Controller::answerUpgradeRequired", "doc": ""\/\/ 426""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerPreconditionRequired", "name": "Simples\\Http\\Controller::answerPreconditionRequired", "doc": ""\/\/ 428""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerTooManyRequests", "name": "Simples\\Http\\Controller::answerTooManyRequests", "doc": ""\/\/ 429""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerRequestHeaderFieldsTooLarge", "name": "Simples\\Http\\Controller::answerRequestHeaderFieldsTooLarge", "doc": ""\/\/ 431""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerInternalServerErro", "name": "Simples\\Http\\Controller::answerInternalServerErro", "doc": ""\/\/ 500""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNotImplemented", "name": "Simples\\Http\\Controller::answerNotImplemented", "doc": ""\/\/ 501""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerBadGateway", "name": "Simples\\Http\\Controller::answerBadGateway", "doc": ""\/\/ 502""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerServiceUnavailable", "name": "Simples\\Http\\Controller::answerServiceUnavailable", "doc": ""\/\/ 503""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerGatewayTimeout", "name": "Simples\\Http\\Controller::answerGatewayTimeout", "doc": ""\/\/ 504""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerHTTPVersionNotSupported", "name": "Simples\\Http\\Controller::answerHTTPVersionNotSupported", "doc": ""\/\/ 505""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerVariantAlsoNegotiates", "name": "Simples\\Http\\Controller::answerVariantAlsoNegotiates", "doc": ""\/\/ 506""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerInsufficientStorage", "name": "Simples\\Http\\Controller::answerInsufficientStorage", "doc": ""\/\/ 507""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerLoopDetected", "name": "Simples\\Http\\Controller::answerLoopDetected", "doc": ""\/\/ 508""},
{"type": "Method", "fromName": "Simples\\Http\\Controller", "fromLink": "Simples/Http/Controller.html", "link": "Simples/Http/Controller.html#method_answerNetworkAuthenticationRequired", "name": "Simples\\Http\\Controller::answerNetworkAuthenticationRequired", "doc": ""\/\/ 511""},
{"type": "Class", "fromName": "Simples\\Http\\Error", "fromLink": "Simples/Http/Error.html", "link": "Simples/Http/Error/SimplesForbiddenError.html", "name": "Simples\\Http\\Error\\SimplesForbiddenError", "doc": ""Class ForbiddenError""},
{"type": "Class", "fromName": "Simples\\Http", "fromLink": "Simples/Http.html", "link": "Simples/Http/Input.html", "name": "Simples\\Http\\Input", "doc": ""Class Input""},
{"type": "Method", "fromName": "Simples\\Http\\Input", "fromLink": "Simples/Http/Input.html", "link": "Simples/Http/Input.html#method___construct", "name": "Simples\\Http\\Input::__construct", "doc": ""Input constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\Input", "fromLink": "Simples/Http/Input.html", "link": "Simples/Http/Input.html#method_number", "name": "Simples\\Http\\Input::number", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Input", "fromLink": "Simples/Http/Input.html", "link": "Simples/Http/Input.html#method_string", "name": "Simples\\Http\\Input::string", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Input", "fromLink": "Simples/Http/Input.html", "link": "Simples/Http/Input.html#method_filter", "name": "Simples\\Http\\Input::filter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Input", "fromLink": "Simples/Http/Input.html", "link": "Simples/Http/Input.html#method___toString", "name": "Simples\\Http\\Input::__toString", "doc": ""The __toString method allows a class to decide how it will react when it is converted to a string.""},
{"type": "Class", "fromName": "Simples\\Http\\Kernel", "fromLink": "Simples/Http/Kernel.html", "link": "Simples/Http/Kernel/App.html", "name": "Simples\\Http\\Kernel\\App", "doc": ""Class App""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\App", "fromLink": "Simples/Http/Kernel/App.html", "link": "Simples/Http/Kernel/App.html#method_handle", "name": "Simples\\Http\\Kernel\\App::handle", "doc": ""Used to catch http requests and handle response to their""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\App", "fromLink": "Simples/Http/Kernel/App.html", "link": "Simples/Http/Kernel/App.html#method_request", "name": "Simples\\Http\\Kernel\\App::request", "doc": ""Singleton to Request to keep only one instance for each request""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\App", "fromLink": "Simples/Http/Kernel/App.html", "link": "Simples/Http/Kernel/App.html#method_route", "name": "Simples\\Http\\Kernel\\App::route", "doc": ""Simple helper to generate a valid route to resources of project""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\App", "fromLink": "Simples/Http/Kernel/App.html", "link": "Simples/Http/Kernel/App.html#method_response", "name": "Simples\\Http\\Kernel\\App::response", "doc": ""Singleton to Response to keep only one instance for each request""},
{"type": "Class", "fromName": "Simples\\Http\\Kernel", "fromLink": "Simples/Http/Kernel.html", "link": "Simples/Http/Kernel/Delegate.html", "name": "Simples\\Http\\Kernel\\Delegate", "doc": ""Class Delegate""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Delegate", "fromLink": "Simples/Http/Kernel/Delegate.html", "link": "Simples/Http/Kernel/Delegate.html#method___construct", "name": "Simples\\Http\\Kernel\\Delegate::__construct", "doc": ""Delegate constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Delegate", "fromLink": "Simples/Http/Kernel/Delegate.html", "link": "Simples/Http/Kernel/Delegate.html#method_process", "name": "Simples\\Http\\Kernel\\Delegate::process", "doc": ""Dispatch the next available middleware and return the response.""},
{"type": "Class", "fromName": "Simples\\Http\\Kernel", "fromLink": "Simples/Http/Kernel.html", "link": "Simples/Http/Kernel/Handler.html", "name": "Simples\\Http\\Kernel\\Handler", "doc": ""Class Handler""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Handler", "fromLink": "Simples/Http/Kernel/Handler.html", "link": "Simples/Http/Kernel/Handler.html#method___construct", "name": "Simples\\Http\\Kernel\\Handler::__construct", "doc": ""Handler constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Handler", "fromLink": "Simples/Http/Kernel/Handler.html", "link": "Simples/Http/Kernel/Handler.html#method_apply", "name": "Simples\\Http\\Kernel\\Handler::apply", "doc": ""Apply the middleware's to Match""},
{"type": "Class", "fromName": "Simples\\Http\\Kernel", "fromLink": "Simples/Http/Kernel.html", "link": "Simples/Http/Kernel/Http.html", "name": "Simples\\Http\\Kernel\\Http", "doc": ""Class Http""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Http", "fromLink": "Simples/Http/Kernel/Http.html", "link": "Simples/Http/Kernel/Http.html#method___construct", "name": "Simples\\Http\\Kernel\\Http::__construct", "doc": ""Http constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Http", "fromLink": "Simples/Http/Kernel/Http.html", "link": "Simples/Http/Kernel/Http.html#method_handle", "name": "Simples\\Http\\Kernel\\Http::handle", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Http", "fromLink": "Simples/Http/Kernel/Http.html", "link": "Simples/Http/Kernel/Http.html#method_routes", "name": "Simples\\Http\\Kernel\\Http::routes", "doc": ""Load the routes of project""},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Http", "fromLink": "Simples/Http/Kernel/Http.html", "link": "Simples/Http/Kernel/Http.html#method_fallback", "name": "Simples\\Http\\Kernel\\Http::fallback", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Kernel\\Http", "fromLink": "Simples/Http/Kernel/Http.html", "link": "Simples/Http/Kernel/Http.html#method_output", "name": "Simples\\Http\\Kernel\\Http::output", "doc": """"},
{"type": "Class", "fromName": "Simples\\Http\\Middleware", "fromLink": "Simples/Http/Middleware.html", "link": "Simples/Http/Middleware/CrossOriginResourceSharing.html", "name": "Simples\\Http\\Middleware\\CrossOriginResourceSharing", "doc": ""Class CrossOriginResourceSharing""},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\CrossOriginResourceSharing", "fromLink": "Simples/Http/Middleware/CrossOriginResourceSharing.html", "link": "Simples/Http/Middleware/CrossOriginResourceSharing.html#method_process", "name": "Simples\\Http\\Middleware\\CrossOriginResourceSharing::process", "doc": ""Process an incoming server request and return a response, optionally delegating\nto the next middleware component to create the response.""},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\CrossOriginResourceSharing", "fromLink": "Simples/Http/Middleware/CrossOriginResourceSharing.html", "link": "Simples/Http/Middleware/CrossOriginResourceSharing.html#method_validate", "name": "Simples\\Http\\Middleware\\CrossOriginResourceSharing::validate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\CrossOriginResourceSharing", "fromLink": "Simples/Http/Middleware/CrossOriginResourceSharing.html", "link": "Simples/Http/Middleware/CrossOriginResourceSharing.html#method_isPreFlight", "name": "Simples\\Http\\Middleware\\CrossOriginResourceSharing::isPreFlight", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\CrossOriginResourceSharing", "fromLink": "Simples/Http/Middleware/CrossOriginResourceSharing.html", "link": "Simples/Http/Middleware/CrossOriginResourceSharing.html#method_isCORS", "name": "Simples\\Http\\Middleware\\CrossOriginResourceSharing::isCORS", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\CrossOriginResourceSharing", "fromLink": "Simples/Http/Middleware/CrossOriginResourceSharing.html", "link": "Simples/Http/Middleware/CrossOriginResourceSharing.html#method_configurePreFlight", "name": "Simples\\Http\\Middleware\\CrossOriginResourceSharing::configurePreFlight", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\CrossOriginResourceSharing", "fromLink": "Simples/Http/Middleware/CrossOriginResourceSharing.html", "link": "Simples/Http/Middleware/CrossOriginResourceSharing.html#method_configureResponse", "name": "Simples\\Http\\Middleware\\CrossOriginResourceSharing::configureResponse", "doc": """"},
{"type": "Class", "fromName": "Simples\\Http\\Middleware", "fromLink": "Simples/Http/Middleware.html", "link": "Simples/Http/Middleware/HttpResponse.html", "name": "Simples\\Http\\Middleware\\HttpResponse", "doc": ""Class HttpResponse""},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\HttpResponse", "fromLink": "Simples/Http/Middleware/HttpResponse.html", "link": "Simples/Http/Middleware/HttpResponse.html#method___construct", "name": "Simples\\Http\\Middleware\\HttpResponse::__construct", "doc": ""HttpResponse constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\Middleware\\HttpResponse", "fromLink": "Simples/Http/Middleware/HttpResponse.html", "link": "Simples/Http/Middleware/HttpResponse.html#method_process", "name": "Simples\\Http\\Middleware\\HttpResponse::process", "doc": ""Process an incoming server request and return a response, optionally delegating\nto the next middleware component to create the response.""},
{"type": "Class", "fromName": "Simples\\Http", "fromLink": "Simples/Http.html", "link": "Simples/Http/Request.html", "name": "Simples\\Http\\Request", "doc": ""Class Request""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method___construct", "name": "Simples\\Http\\Request::__construct", "doc": ""Request constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_addBodySource", "name": "Simples\\Http\\Request::addBodySource", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getMethod", "name": "Simples\\Http\\Request::getMethod", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getUri", "name": "Simples\\Http\\Request::getUri", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getUrl", "name": "Simples\\Http\\Request::getUrl", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getProtocolVersion", "name": "Simples\\Http\\Request::getProtocolVersion", "doc": ""Retrieves the HTTP protocol version as a string.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withProtocolVersion", "name": "Simples\\Http\\Request::withProtocolVersion", "doc": ""Return an instance with the specified HTTP protocol version.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getHeaders", "name": "Simples\\Http\\Request::getHeaders", "doc": ""Retrieves all message header values.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_hasHeader", "name": "Simples\\Http\\Request::hasHeader", "doc": ""Checks if a header exists by the given case-insensitive name.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getHeader", "name": "Simples\\Http\\Request::getHeader", "doc": ""Retrieves a message header value by the given case-insensitive name.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getHeaderLine", "name": "Simples\\Http\\Request::getHeaderLine", "doc": ""Retrieves a comma-separated string of the values for a single header.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withHeader", "name": "Simples\\Http\\Request::withHeader", "doc": ""Return an instance with the provided value replacing the specified header.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withAddedHeader", "name": "Simples\\Http\\Request::withAddedHeader", "doc": ""Return an instance with the specified header appended with the given value.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withoutHeader", "name": "Simples\\Http\\Request::withoutHeader", "doc": ""Return an instance without the specified header.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getRequestTarget", "name": "Simples\\Http\\Request::getRequestTarget", "doc": ""Retrieves the message's request target.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withRequestTarget", "name": "Simples\\Http\\Request::withRequestTarget", "doc": ""Return an instance with the specific request-target.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withMethod", "name": "Simples\\Http\\Request::withMethod", "doc": ""Return an instance with the provided HTTP method.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withUri", "name": "Simples\\Http\\Request::withUri", "doc": ""Returns an instance with the provided URI.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getServerParams", "name": "Simples\\Http\\Request::getServerParams", "doc": ""Retrieve server parameters.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getCookieParams", "name": "Simples\\Http\\Request::getCookieParams", "doc": ""Retrieve cookies.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withCookieParams", "name": "Simples\\Http\\Request::withCookieParams", "doc": ""Return an instance with the specified cookies.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_getQueryParams", "name": "Simples\\Http\\Request::getQueryParams", "doc": ""Retrieve query string arguments.""},
{"type": "Method", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request.html#method_withQueryParams", "name": "Simples\\Http\\Request::withQueryParams", "doc": ""Return an instance with the specified query string arguments.""},
{"type": "Trait", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request/Body.html", "name": "Simples\\Http\\Request\\Body", "doc": ""Trait Body""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_getInputs", "name": "Simples\\Http\\Request\\Body::getInputs", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_getInput", "name": "Simples\\Http\\Request\\Body::getInput", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_get", "name": "Simples\\Http\\Request\\Body::get", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_post", "name": "Simples\\Http\\Request\\Body::post", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_getAttributes", "name": "Simples\\Http\\Request\\Body::getAttributes", "doc": ""Retrieve attributes derived from the request.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_getAttribute", "name": "Simples\\Http\\Request\\Body::getAttribute", "doc": ""Retrieve a single derived request attribute.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_withAttribute", "name": "Simples\\Http\\Request\\Body::withAttribute", "doc": ""Return an instance with the specified derived request attribute.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_withoutAttribute", "name": "Simples\\Http\\Request\\Body::withoutAttribute", "doc": ""Return an instance that removes the specified derived request attribute.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_getBody", "name": "Simples\\Http\\Request\\Body::getBody", "doc": ""Gets the body of the message.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_withBody", "name": "Simples\\Http\\Request\\Body::withBody", "doc": ""Return an instance with the specified message body.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_getParsedBody", "name": "Simples\\Http\\Request\\Body::getParsedBody", "doc": ""Retrieve any parameters provided in the request body.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_withParsedBody", "name": "Simples\\Http\\Request\\Body::withParsedBody", "doc": ""Return an instance with the specified body parameters.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_getUploadedFiles", "name": "Simples\\Http\\Request\\Body::getUploadedFiles", "doc": ""Retrieve normalized file upload data.""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Body", "fromLink": "Simples/Http/Request/Body.html", "link": "Simples/Http/Request/Body.html#method_withUploadedFiles", "name": "Simples\\Http\\Request\\Body::withUploadedFiles", "doc": ""Create a new instance with the specified uploaded files.""},
{"type": "Trait", "fromName": "Simples\\Http\\Request", "fromLink": "Simples/Http/Request.html", "link": "Simples/Http/Request/Extract.html", "name": "Simples\\Http\\Request\\Extract", "doc": ""Trait Extract""},
{"type": "Method", "fromName": "Simples\\Http\\Request\\Extract", "fromLink": "Simples/Http/Request/Extract.html", "link": "Simples/Http/Request/Extract.html#method_fromServer", "name": "Simples\\Http\\Request\\Extract::fromServer", "doc": """"},
{"type": "Class", "fromName": "Simples\\Http", "fromLink": "Simples/Http.html", "link": "Simples/Http/Response.html", "name": "Simples\\Http\\Response", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method___construct", "name": "Simples\\Http\\Response::__construct", "doc": ""Response constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_header", "name": "Simples\\Http\\Response::header", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method___call", "name": "Simples\\Http\\Response::__call", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_toString", "name": "Simples\\Http\\Response::toString", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_api", "name": "Simples\\Http\\Response::api", "doc": ""https:\/\/labs.omniti.com\/labs\/jsend""},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_meta", "name": "Simples\\Http\\Response::meta", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_getStatusType", "name": "Simples\\Http\\Response::getStatusType", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_isSuccess", "name": "Simples\\Http\\Response::isSuccess", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_isFail", "name": "Simples\\Http\\Response::isFail", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_isError", "name": "Simples\\Http\\Response::isError", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_atom", "name": "Simples\\Http\\Response::atom", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_css", "name": "Simples\\Http\\Response::css", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_html", "name": "Simples\\Http\\Response::html", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_jpeg", "name": "Simples\\Http\\Response::jpeg", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_json", "name": "Simples\\Http\\Response::json", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_pdf", "name": "Simples\\Http\\Response::pdf", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_rss", "name": "Simples\\Http\\Response::rss", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_plain", "name": "Simples\\Http\\Response::plain", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Response", "fromLink": "Simples/Http/Response.html", "link": "Simples/Http/Response.html#method_xml", "name": "Simples\\Http\\Response::xml", "doc": ""Class Response""},
{"type": "Class", "fromName": "Simples\\Http", "fromLink": "Simples/Http.html", "link": "Simples/Http/ResponseStream.html", "name": "Simples\\Http\\ResponseStream", "doc": ""Class ResponseStream""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method___construct", "name": "Simples\\Http\\ResponseStream::__construct", "doc": ""ResponseStream constructor.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_write", "name": "Simples\\Http\\ResponseStream::write", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_getProtocolVersion", "name": "Simples\\Http\\ResponseStream::getProtocolVersion", "doc": ""Retrieves the HTTP protocol version as a string.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_withProtocolVersion", "name": "Simples\\Http\\ResponseStream::withProtocolVersion", "doc": ""Return an instance with the specified HTTP protocol version.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_hasHeader", "name": "Simples\\Http\\ResponseStream::hasHeader", "doc": ""Checks if a header exists by the given case-insensitive name.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_getHeader", "name": "Simples\\Http\\ResponseStream::getHeader", "doc": ""Retrieves a message header value by the given case-insensitive name.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_getHeaderLine", "name": "Simples\\Http\\ResponseStream::getHeaderLine", "doc": ""Retrieves a comma-separated string of the values for a single header.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_withHeader", "name": "Simples\\Http\\ResponseStream::withHeader", "doc": ""Return an instance with the provided value replacing the specified header.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_withAddedHeader", "name": "Simples\\Http\\ResponseStream::withAddedHeader", "doc": ""Return an instance with the specified header appended with the given value.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_withoutHeader", "name": "Simples\\Http\\ResponseStream::withoutHeader", "doc": ""Return an instance without the specified header.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_withBody", "name": "Simples\\Http\\ResponseStream::withBody", "doc": ""Return an instance with the specified message body.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_getStatusCode", "name": "Simples\\Http\\ResponseStream::getStatusCode", "doc": ""Gets the response status code.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_withStatus", "name": "Simples\\Http\\ResponseStream::withStatus", "doc": ""Return an instance with the specified status code and, optionally, reason phrase.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_getReasonPhrase", "name": "Simples\\Http\\ResponseStream::getReasonPhrase", "doc": ""Gets the response reason phrase associated with the status code.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_getHeaders", "name": "Simples\\Http\\ResponseStream::getHeaders", "doc": ""Retrieves all message header values.""},
{"type": "Method", "fromName": "Simples\\Http\\ResponseStream", "fromLink": "Simples/Http/ResponseStream.html", "link": "Simples/Http/ResponseStream.html#method_getBody", "name": "Simples\\Http\\ResponseStream::getBody", "doc": ""Gets the body of the message.""},
{"type": "Class", "fromName": "Simples\\Http", "fromLink": "Simples/Http.html", "link": "Simples/Http/Stream.html", "name": "Simples\\Http\\Stream", "doc": ""Class Stream""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method___construct", "name": "Simples\\Http\\Stream::__construct", "doc": """"},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method___toString", "name": "Simples\\Http\\Stream::__toString", "doc": ""Reads all data from the stream into a string, from the beginning to end.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_close", "name": "Simples\\Http\\Stream::close", "doc": ""Closes the stream and any underlying resources.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_detach", "name": "Simples\\Http\\Stream::detach", "doc": ""Separates any underlying resources from the stream.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_attach", "name": "Simples\\Http\\Stream::attach", "doc": ""Attach a new stream\/resource to the instance.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_getSize", "name": "Simples\\Http\\Stream::getSize", "doc": ""Get the size of the stream if known.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_tell", "name": "Simples\\Http\\Stream::tell", "doc": ""Returns the current position of the file read\/write pointer""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_eof", "name": "Simples\\Http\\Stream::eof", "doc": ""Returns true if the stream is at the end of the stream.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_isSeekable", "name": "Simples\\Http\\Stream::isSeekable", "doc": ""Returns whether or not the stream is seekable.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_seek", "name": "Simples\\Http\\Stream::seek", "doc": ""Seek to a position in the stream.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_rewind", "name": "Simples\\Http\\Stream::rewind", "doc": ""Seek to the beginning of the stream.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_isWritable", "name": "Simples\\Http\\Stream::isWritable", "doc": ""Returns whether or not the stream is writable.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_write", "name": "Simples\\Http\\Stream::write", "doc": ""Write data to the stream.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_isReadable", "name": "Simples\\Http\\Stream::isReadable", "doc": ""Returns whether or not the stream is readable.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_read", "name": "Simples\\Http\\Stream::read", "doc": ""Read data from the stream.""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_getContents", "name": "Simples\\Http\\Stream::getContents", "doc": ""Returns the remaining contents in a string""},
{"type": "Method", "fromName": "Simples\\Http\\Stream", "fromLink": "Simples/Http/Stream.html", "link": "Simples/Http/Stream.html#method_getMetadata", "name": "Simples\\Http\\Stream::getMetadata", "doc": ""Get stream metadata as an associative array or retrieve a specific key.""},
{"type": "Class", "fromName": "Simples\\Kernel", "fromLink": "Simples/Kernel.html", "link": "Simples/Kernel/App.html", "name": "Simples\\Kernel\\App", "doc": ""Class App""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method___construct", "name": "Simples\\Kernel\\App::__construct", "doc": ""App constructor""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_defaults", "name": "Simples\\Kernel\\App::defaults", "doc": ""Get value default created in defaults config to some class""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_beautifulTrace", "name": "Simples\\Kernel\\App::beautifulTrace", "doc": """"},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_logging", "name": "Simples\\Kernel\\App::logging", "doc": ""Configure the logging level inf App""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_log", "name": "Simples\\Kernel\\App::log", "doc": ""Create a file with data to be analysed""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_pipe", "name": "Simples\\Kernel\\App::pipe", "doc": ""Add middleware's to pipe""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_pipes", "name": "Simples\\Kernel\\App::pipes", "doc": ""Add a list of middlewares to pipe""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_http", "name": "Simples\\Kernel\\App::http", "doc": ""Used to catch http requests and handle response to their""},
{"type": "Method", "fromName": "Simples\\Kernel\\App", "fromLink": "Simples/Kernel/App.html", "link": "Simples/Kernel/App.html#method_cli", "name": "Simples\\Kernel\\App::cli", "doc": ""Handler to cli services, provide a interface to access services""},
{"type": "Class", "fromName": "Simples\\Kernel", "fromLink": "Simples/Kernel.html", "link": "Simples/Kernel/Base.html", "name": "Simples\\Kernel\\Base", "doc": ""Class Base""},
{"type": "Method", "fromName": "Simples\\Kernel\\Base", "fromLink": "Simples/Kernel/Base.html", "link": "Simples/Kernel/Base.html#method_setup", "name": "Simples\\Kernel\\Base::setup", "doc": ""Setup the options to App settings""},
{"type": "Method", "fromName": "Simples\\Kernel\\Base", "fromLink": "Simples/Kernel/Base.html", "link": "Simples/Kernel/Base.html#method_options", "name": "Simples\\Kernel\\Base::options", "doc": ""Management to options of app""},
{"type": "Method", "fromName": "Simples\\Kernel\\Base", "fromLink": "Simples/Kernel/Base.html", "link": "Simples/Kernel/Base.html#method_config", "name": "Simples\\Kernel\\Base::config", "doc": ""Interface to get config values""},
{"type": "Class", "fromName": "Simples\\Kernel", "fromLink": "Simples/Kernel.html", "link": "Simples/Kernel/Container.html", "name": "Simples\\Kernel\\Container", "doc": ""Class Container""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method___construct", "name": "Simples\\Kernel\\Container::__construct", "doc": ""Container constructor.""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_instance", "name": "Simples\\Kernel\\Container::instance", "doc": ""A singleton to a Container instance""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_get", "name": "Simples\\Kernel\\Container::get", "doc": ""Finds an entry of the container by its identifier and returns it.""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_has", "name": "Simples\\Kernel\\Container::has", "doc": ""Returns true if the container can return an entry for the given identifier.""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_register", "name": "Simples\\Kernel\\Container::register", "doc": ""Register a class or alias into the Container.""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_unRegister", "name": "Simples\\Kernel\\Container::unRegister", "doc": ""UnRegister a Interface\/Class\/Alias.""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_make", "name": "Simples\\Kernel\\Container::make", "doc": ""Resolves and created a new instance of a desired class.""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_makeInstance", "name": "Simples\\Kernel\\Container::makeInstance", "doc": ""Created a instance of a desired class.""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_exists", "name": "Simples\\Kernel\\Container::exists", "doc": ""Checks whether a specific method is defined in a class""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_invoke", "name": "Simples\\Kernel\\Container::invoke", "doc": ""Invoke a method of an instance of a class""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_resolveMethodParameters", "name": "Simples\\Kernel\\Container::resolveMethodParameters", "doc": ""Generate a list of values to be used like parameters to one method""},
{"type": "Method", "fromName": "Simples\\Kernel\\Container", "fromLink": "Simples/Kernel/Container.html", "link": "Simples/Kernel/Container.html#method_resolveFunctionParameters", "name": "Simples\\Kernel\\Container::resolveFunctionParameters", "doc": ""Generate a list of values to be used like parameters to one function""},
{"type": "Class", "fromName": "Simples\\Kernel", "fromLink": "Simples/Kernel.html", "link": "Simples/Kernel/Middleware.html", "name": "Simples\\Kernel\\Middleware", "doc": ""Class Middleware""},
{"type": "Method", "fromName": "Simples\\Kernel\\Middleware", "fromLink": "Simples/Kernel/Middleware.html", "link": "Simples/Kernel/Middleware.html#method_alias", "name": "Simples\\Kernel\\Middleware::alias", "doc": ""Get the name of middleware to be used in pipes""},
{"type": "Class", "fromName": "Simples\\Kernel", "fromLink": "Simples/Kernel.html", "link": "Simples/Kernel/Wrapper.html", "name": "Simples\\Kernel\\Wrapper", "doc": ""Class Wrapper""},
{"type": "Method", "fromName": "Simples\\Kernel\\Wrapper", "fromLink": "Simples/Kernel/Wrapper.html", "link": "Simples/Kernel/Wrapper.html#method_warning", "name": "Simples\\Kernel\\Wrapper::warning", "doc": """"},
{"type": "Method", "fromName": "Simples\\Kernel\\Wrapper", "fromLink": "Simples/Kernel/Wrapper.html", "link": "Simples/Kernel/Wrapper.html#method_info", "name": "Simples\\Kernel\\Wrapper::info", "doc": """"},
{"type": "Method", "fromName": "Simples\\Kernel\\Wrapper", "fromLink": "Simples/Kernel/Wrapper.html", "link": "Simples/Kernel/Wrapper.html#method_buffer", "name": "Simples\\Kernel\\Wrapper::buffer", "doc": """"},
{"type": "Method", "fromName": "Simples\\Kernel\\Wrapper", "fromLink": "Simples/Kernel/Wrapper.html", "link": "Simples/Kernel/Wrapper.html#method_log", "name": "Simples\\Kernel\\Wrapper::log", "doc": """"},
{"type": "Method", "fromName": "Simples\\Kernel\\Wrapper", "fromLink": "Simples/Kernel/Wrapper.html", "link": "Simples/Kernel/Wrapper.html#method_message", "name": "Simples\\Kernel\\Wrapper::message", "doc": """"},
{"type": "Method", "fromName": "Simples\\Kernel\\Wrapper", "fromLink": "Simples/Kernel/Wrapper.html", "link": "Simples/Kernel/Wrapper.html#method_messages", "name": "Simples\\Kernel\\Wrapper::messages", "doc": """"},
{"type": "Method", "fromName": "Simples\\Kernel\\Wrapper", "fromLink": "Simples/Kernel/Wrapper.html", "link": "Simples/Kernel/Wrapper.html#method_trace", "name": "Simples\\Kernel\\Wrapper::trace", "doc": """"},
{"type": "Class", "fromName": "Simples\\Message", "fromLink": "Simples/Message.html", "link": "Simples/Message/Lang.html", "name": "Simples\\Message\\Lang", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Lang", "fromLink": "Simples/Message/Lang.html", "link": "Simples/Message/Lang.html#method_locale", "name": "Simples\\Message\\Lang::locale", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Lang", "fromLink": "Simples/Message/Lang.html", "link": "Simples/Message/Lang.html#method___callStatic", "name": "Simples\\Message\\Lang::__callStatic", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Lang", "fromLink": "Simples/Message/Lang.html", "link": "Simples/Message/Lang.html#method_get", "name": "Simples\\Message\\Lang::get", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Lang", "fromLink": "Simples/Message/Lang.html", "link": "Simples/Message/Lang.html#method_replace", "name": "Simples\\Message\\Lang::replace", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Lang", "fromLink": "Simples/Message/Lang.html", "link": "Simples/Message/Lang.html#method_replacement", "name": "Simples\\Message\\Lang::replacement", "doc": """"},
{"type": "Class", "fromName": "Simples\\Message", "fromLink": "Simples/Message.html", "link": "Simples/Message/Mail.html", "name": "Simples\\Message\\Mail", "doc": ""Class Mail""},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method___construct", "name": "Simples\\Message\\Mail::__construct", "doc": ""EMail constructor.""},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_send", "name": "Simples\\Message\\Mail::send", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_schedule", "name": "Simples\\Message\\Mail::schedule", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_load", "name": "Simples\\Message\\Mail::load", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_json", "name": "Simples\\Message\\Mail::json", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_addCC", "name": "Simples\\Message\\Mail::addCC", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_addAttachment", "name": "Simples\\Message\\Mail::addAttachment", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getSubject", "name": "Simples\\Message\\Mail::getSubject", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setSubject", "name": "Simples\\Message\\Mail::setSubject", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getMessage", "name": "Simples\\Message\\Mail::getMessage", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setMessage", "name": "Simples\\Message\\Mail::setMessage", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getToAddress", "name": "Simples\\Message\\Mail::getToAddress", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setToAddress", "name": "Simples\\Message\\Mail::setToAddress", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getToName", "name": "Simples\\Message\\Mail::getToName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setToName", "name": "Simples\\Message\\Mail::setToName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getAlt", "name": "Simples\\Message\\Mail::getAlt", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setAlt", "name": "Simples\\Message\\Mail::setAlt", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getFromAddress", "name": "Simples\\Message\\Mail::getFromAddress", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setFromAddress", "name": "Simples\\Message\\Mail::setFromAddress", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getFromName", "name": "Simples\\Message\\Mail::getFromName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setFromName", "name": "Simples\\Message\\Mail::setFromName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getReplyToAddress", "name": "Simples\\Message\\Mail::getReplyToAddress", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setReplyToAddress", "name": "Simples\\Message\\Mail::setReplyToAddress", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getReplyToName", "name": "Simples\\Message\\Mail::getReplyToName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setReplyToName", "name": "Simples\\Message\\Mail::setReplyToName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getAttachments", "name": "Simples\\Message\\Mail::getAttachments", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setAttachments", "name": "Simples\\Message\\Mail::setAttachments", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_getCcs", "name": "Simples\\Message\\Mail::getCcs", "doc": """"},
{"type": "Method", "fromName": "Simples\\Message\\Mail", "fromLink": "Simples/Message/Mail.html", "link": "Simples/Message/Mail.html#method_setCcs", "name": "Simples\\Message\\Mail::setCcs", "doc": """"},
{"type": "Class", "fromName": "Simples\\Migration", "fromLink": "Simples/Migration.html", "link": "Simples/Migration/Driver.html", "name": "Simples\\Migration\\Driver", "doc": ""Interface Driver""},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_create", "name": "Simples\\Migration\\Driver::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_alter", "name": "Simples\\Migration\\Driver::alter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_drop", "name": "Simples\\Migration\\Driver::drop", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_add", "name": "Simples\\Migration\\Driver::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_change", "name": "Simples\\Migration\\Driver::change", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Driver", "fromLink": "Simples/Migration/Driver.html", "link": "Simples/Migration/Driver.html#method_remove", "name": "Simples\\Migration\\Driver::remove", "doc": """"},
{"type": "Class", "fromName": "Simples\\Migration", "fromLink": "Simples/Migration.html", "link": "Simples/Migration/Instruction.html", "name": "Simples\\Migration\\Instruction", "doc": ""Class Instruction""},
{"type": "Method", "fromName": "Simples\\Migration\\Instruction", "fromLink": "Simples/Migration/Instruction.html", "link": "Simples/Migration/Instruction.html#method___construct", "name": "Simples\\Migration\\Instruction::__construct", "doc": ""Instruction constructor.""},
{"type": "Method", "fromName": "Simples\\Migration\\Instruction", "fromLink": "Simples/Migration/Instruction.html", "link": "Simples/Migration/Instruction.html#method_make", "name": "Simples\\Migration\\Instruction::make", "doc": """"},
{"type": "Class", "fromName": "Simples\\Migration", "fromLink": "Simples/Migration.html", "link": "Simples/Migration/Migrant.html", "name": "Simples\\Migration\\Migrant", "doc": ""Class Migrant""},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method___construct", "name": "Simples\\Migration\\Migrant::__construct", "doc": ""Migrant constructor.""},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_instance", "name": "Simples\\Migration\\Migrant::instance", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_create", "name": "Simples\\Migration\\Migrant::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_alter", "name": "Simples\\Migration\\Migrant::alter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_drop", "name": "Simples\\Migration\\Migrant::drop", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_add", "name": "Simples\\Migration\\Migrant::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_change", "name": "Simples\\Migration\\Migrant::change", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_remove", "name": "Simples\\Migration\\Migrant::remove", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Migrant", "fromLink": "Simples/Migration/Migrant.html", "link": "Simples/Migration/Migrant.html#method_getInstructions", "name": "Simples\\Migration\\Migrant::getInstructions", "doc": """"},
{"type": "Class", "fromName": "Simples\\Migration", "fromLink": "Simples/Migration.html", "link": "Simples/Migration/Revision.html", "name": "Simples\\Migration\\Revision", "doc": ""Class Revision""},
{"type": "Method", "fromName": "Simples\\Migration\\Revision", "fromLink": "Simples/Migration/Revision.html", "link": "Simples/Migration/Revision.html#method_up", "name": "Simples\\Migration\\Revision::up", "doc": ""Method what contains the instruction to up a Revision""},
{"type": "Method", "fromName": "Simples\\Migration\\Revision", "fromLink": "Simples/Migration/Revision.html", "link": "Simples/Migration/Revision.html#method_down", "name": "Simples\\Migration\\Revision::down", "doc": ""Method what contains the instruction to down a Revision""},
{"type": "Method", "fromName": "Simples\\Migration\\Revision", "fromLink": "Simples/Migration/Revision.html", "link": "Simples/Migration/Revision.html#method_add", "name": "Simples\\Migration\\Revision::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Revision", "fromLink": "Simples/Migration/Revision.html", "link": "Simples/Migration/Revision.html#method_once", "name": "Simples\\Migration\\Revision::once", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\Revision", "fromLink": "Simples/Migration/Revision.html", "link": "Simples/Migration/Revision.html#method_getInstructions", "name": "Simples\\Migration\\Revision::getInstructions", "doc": """"},
{"type": "Class", "fromName": "Simples\\Migration\\SQL", "fromLink": "Simples/Migration/SQL.html", "link": "Simples/Migration/SQL/MySQL.html", "name": "Simples\\Migration\\SQL\\MySQL", "doc": ""Class Driver""},
{"type": "Method", "fromName": "Simples\\Migration\\SQL\\MySQL", "fromLink": "Simples/Migration/SQL/MySQL.html", "link": "Simples/Migration/SQL/MySQL.html#method_create", "name": "Simples\\Migration\\SQL\\MySQL::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\SQL\\MySQL", "fromLink": "Simples/Migration/SQL/MySQL.html", "link": "Simples/Migration/SQL/MySQL.html#method_alter", "name": "Simples\\Migration\\SQL\\MySQL::alter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\SQL\\MySQL", "fromLink": "Simples/Migration/SQL/MySQL.html", "link": "Simples/Migration/SQL/MySQL.html#method_drop", "name": "Simples\\Migration\\SQL\\MySQL::drop", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\SQL\\MySQL", "fromLink": "Simples/Migration/SQL/MySQL.html", "link": "Simples/Migration/SQL/MySQL.html#method_add", "name": "Simples\\Migration\\SQL\\MySQL::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\SQL\\MySQL", "fromLink": "Simples/Migration/SQL/MySQL.html", "link": "Simples/Migration/SQL/MySQL.html#method_change", "name": "Simples\\Migration\\SQL\\MySQL::change", "doc": """"},
{"type": "Method", "fromName": "Simples\\Migration\\SQL\\MySQL", "fromLink": "Simples/Migration/SQL/MySQL.html", "link": "Simples/Migration/SQL/MySQL.html#method_remove", "name": "Simples\\Migration\\SQL\\MySQL::remove", "doc": """"},
{"type": "Class", "fromName": "Simples\\Migration", "fromLink": "Simples/Migration.html", "link": "Simples/Migration/Service.html", "name": "Simples\\Migration\\Service", "doc": ""Class Service""},
{"type": "Method", "fromName": "Simples\\Migration\\Service", "fromLink": "Simples/Migration/Service.html", "link": "Simples/Migration/Service.html#method_execute", "name": "Simples\\Migration\\Service::execute", "doc": """"},
{"type": "Class", "fromName": "Simples\\Model", "fromLink": "Simples/Model.html", "link": "Simples/Model/Action.html", "name": "Simples\\Model\\Action", "doc": ""Class Action""},
{"type": "Class", "fromName": "Simples\\Model", "fromLink": "Simples/Model.html", "link": "Simples/Model/DataMapper.html", "name": "Simples\\Model\\DataMapper", "doc": ""Class DataMapper""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method___construct", "name": "Simples\\Model\\DataMapper::__construct", "doc": ""DataMapper constructor""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_construct", "name": "Simples\\Model\\DataMapper::construct", "doc": ""Model constructor""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_create", "name": "Simples\\Model\\DataMapper::create", "doc": ""Method with the responsibility of create a record of model""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_read", "name": "Simples\\Model\\DataMapper::read", "doc": ""Read records with the filters informed""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_update", "name": "Simples\\Model\\DataMapper::update", "doc": ""Update the record given""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_destroy", "name": "Simples\\Model\\DataMapper::destroy", "doc": ""Remove the given record of database""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_recycle", "name": "Simples\\Model\\DataMapper::recycle", "doc": ""Recycle a destroyed record""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_count", "name": "Simples\\Model\\DataMapper::count", "doc": ""Get total of records based on filters""},
{"type": "Method", "fromName": "Simples\\Model\\DataMapper", "fromLink": "Simples/Model/DataMapper.html", "link": "Simples/Model/DataMapper.html#method_getActionFields", "name": "Simples\\Model\\DataMapper::getActionFields", "doc": """"},
{"type": "Class", "fromName": "Simples\\Model\\Error", "fromLink": "Simples/Model/Error.html", "link": "Simples/Model/Error/SimplesActionError.html", "name": "Simples\\Model\\Error\\SimplesActionError", "doc": ""Class SimplesHookError""},
{"type": "Method", "fromName": "Simples\\Model\\Error\\SimplesActionError", "fromLink": "Simples/Model/Error/SimplesActionError.html", "link": "Simples/Model/Error/SimplesActionError.html#method___construct", "name": "Simples\\Model\\Error\\SimplesActionError::__construct", "doc": ""SimplesActionError constructor.""},
{"type": "Class", "fromName": "Simples\\Model\\Error", "fromLink": "Simples/Model/Error.html", "link": "Simples/Model/Error/SimplesHookError.html", "name": "Simples\\Model\\Error\\SimplesHookError", "doc": ""Class SimplesHookError""},
{"type": "Method", "fromName": "Simples\\Model\\Error\\SimplesHookError", "fromLink": "Simples/Model/Error/SimplesHookError.html", "link": "Simples/Model/Error/SimplesHookError.html#method___construct", "name": "Simples\\Model\\Error\\SimplesHookError::__construct", "doc": ""SimplesHookError constructor.""},
{"type": "Class", "fromName": "Simples\\Model", "fromLink": "Simples/Model.html", "link": "Simples/Model/ModelAbstract.html", "name": "Simples\\Model\\ModelAbstract", "doc": ""Class AbstractModel""},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method___construct", "name": "Simples\\Model\\ModelAbstract::__construct", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_configure", "name": "Simples\\Model\\ModelAbstract::configure", "doc": ""Configure the instance with reference properties""},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_instance", "name": "Simples\\Model\\ModelAbstract::instance", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_recycle", "name": "Simples\\Model\\ModelAbstract::recycle", "doc": ""Recycle a destroyed record""},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_count", "name": "Simples\\Model\\ModelAbstract::count", "doc": ""Get total of records based on filters""},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_add", "name": "Simples\\Model\\ModelAbstract::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_import", "name": "Simples\\Model\\ModelAbstract::import", "doc": ""Allow use this field like readonly in read filtering and getting it in record""},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_pivot", "name": "Simples\\Model\\ModelAbstract::pivot", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_get", "name": "Simples\\Model\\ModelAbstract::get", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_has", "name": "Simples\\Model\\ModelAbstract::has", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_map", "name": "Simples\\Model\\ModelAbstract::map", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_getFields", "name": "Simples\\Model\\ModelAbstract::getFields", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_hashKey", "name": "Simples\\Model\\ModelAbstract::hashKey", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_getParents", "name": "Simples\\Model\\ModelAbstract::getParents", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_getCollection", "name": "Simples\\Model\\ModelAbstract::getCollection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_getRelationships", "name": "Simples\\Model\\ModelAbstract::getRelationships", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_getPrimaryKey", "name": "Simples\\Model\\ModelAbstract::getPrimaryKey", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\ModelAbstract", "fromLink": "Simples/Model/ModelAbstract.html", "link": "Simples/Model/ModelAbstract.html#method_getHashKey", "name": "Simples\\Model\\ModelAbstract::getHashKey", "doc": """"},
{"type": "Class", "fromName": "Simples\\Model", "fromLink": "Simples/Model.html", "link": "Simples/Model/ModelContract.html", "name": "Simples\\Model\\ModelContract", "doc": ""Class ModelContract""},
{"type": "Method", "fromName": "Simples\\Model\\ModelContract", "fromLink": "Simples/Model/ModelContract.html", "link": "Simples/Model/ModelContract.html#method_create", "name": "Simples\\Model\\ModelContract::create", "doc": ""Method with the responsibility of create a record of model""},
{"type": "Method", "fromName": "Simples\\Model\\ModelContract", "fromLink": "Simples/Model/ModelContract.html", "link": "Simples/Model/ModelContract.html#method_read", "name": "Simples\\Model\\ModelContract::read", "doc": ""Read records with the filters informed""},
{"type": "Method", "fromName": "Simples\\Model\\ModelContract", "fromLink": "Simples/Model/ModelContract.html", "link": "Simples/Model/ModelContract.html#method_update", "name": "Simples\\Model\\ModelContract::update", "doc": ""Update the record given""},
{"type": "Method", "fromName": "Simples\\Model\\ModelContract", "fromLink": "Simples/Model/ModelContract.html", "link": "Simples/Model/ModelContract.html#method_destroy", "name": "Simples\\Model\\ModelContract::destroy", "doc": ""Remove the given record of database""},
{"type": "Class", "fromName": "Simples\\Model", "fromLink": "Simples/Model.html", "link": "Simples/Model/Relation.html", "name": "Simples\\Model\\Relation", "doc": ""Class Relation""},
{"type": "Method", "fromName": "Simples\\Model\\Relation", "fromLink": "Simples/Model/Relation.html", "link": "Simples/Model/Relation.html#method___construct", "name": "Simples\\Model\\Relation::__construct", "doc": ""Relation constructor.""},
{"type": "Class", "fromName": "Simples\\Model\\Repository", "fromLink": "Simples/Model/Repository.html", "link": "Simples/Model/Repository/ModelRepository.html", "name": "Simples\\Model\\Repository\\ModelRepository", "doc": ""Class ModelRepository""},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method___construct", "name": "Simples\\Model\\Repository\\ModelRepository::__construct", "doc": ""ApiRepository constructor.""},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_instance", "name": "Simples\\Model\\Repository\\ModelRepository::instance", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_create", "name": "Simples\\Model\\Repository\\ModelRepository::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_read", "name": "Simples\\Model\\Repository\\ModelRepository::read", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_update", "name": "Simples\\Model\\Repository\\ModelRepository::update", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_destroy", "name": "Simples\\Model\\Repository\\ModelRepository::destroy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_recycle", "name": "Simples\\Model\\Repository\\ModelRepository::recycle", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_count", "name": "Simples\\Model\\Repository\\ModelRepository::count", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_fields", "name": "Simples\\Model\\Repository\\ModelRepository::fields", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_search", "name": "Simples\\Model\\Repository\\ModelRepository::search", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_find", "name": "Simples\\Model\\Repository\\ModelRepository::find", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_findById", "name": "Simples\\Model\\Repository\\ModelRepository::findById", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_previous", "name": "Simples\\Model\\Repository\\ModelRepository::previous", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_next", "name": "Simples\\Model\\Repository\\ModelRepository::next", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_transform", "name": "Simples\\Model\\Repository\\ModelRepository::transform", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_getModel", "name": "Simples\\Model\\Repository\\ModelRepository::getModel", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_getValidator", "name": "Simples\\Model\\Repository\\ModelRepository::getValidator", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_unique", "name": "Simples\\Model\\Repository\\ModelRepository::unique", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_getFields", "name": "Simples\\Model\\Repository\\ModelRepository::getFields", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_getHashKey", "name": "Simples\\Model\\Repository\\ModelRepository::getHashKey", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_log", "name": "Simples\\Model\\Repository\\ModelRepository::log", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\ModelRepository", "fromLink": "Simples/Model/Repository/ModelRepository.html", "link": "Simples/Model/Repository/ModelRepository.html#method_clean", "name": "Simples\\Model\\Repository\\ModelRepository::clean", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Model\\Repository\\Resource", "fromLink": "Simples/Model/Repository/Resource.html", "link": "Simples/Model/Repository/Resource/ValidationParser.html", "name": "Simples\\Model\\Repository\\Resource\\ValidationParser", "doc": ""Class ValidationParser""},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\Resource\\ValidationParser", "fromLink": "Simples/Model/Repository/Resource/ValidationParser.html", "link": "Simples/Model/Repository/Resource/ValidationParser.html#method_parseValidation", "name": "Simples\\Model\\Repository\\Resource\\ValidationParser::parseValidation", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\Resource\\ValidationParser", "fromLink": "Simples/Model/Repository/Resource/ValidationParser.html", "link": "Simples/Model/Repository/Resource/ValidationParser.html#method_getValidators", "name": "Simples\\Model\\Repository\\Resource\\ValidationParser::getValidators", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\Resource\\ValidationParser", "fromLink": "Simples/Model/Repository/Resource/ValidationParser.html", "link": "Simples/Model/Repository/Resource/ValidationParser.html#method_parseValidator", "name": "Simples\\Model\\Repository\\Resource\\ValidationParser::parseValidator", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Repository\\Resource\\ValidationParser", "fromLink": "Simples/Model/Repository/Resource/ValidationParser.html", "link": "Simples/Model/Repository/Resource/ValidationParser.html#method_parseValidatorRules", "name": "Simples\\Model\\Repository\\Resource\\ValidationParser::parseValidatorRules", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Model\\Resource", "fromLink": "Simples/Model/Resource.html", "link": "Simples/Model/Resource/Cache.html", "name": "Simples\\Model\\Resource\\Cache", "doc": ""Class Cache""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\Cache", "fromLink": "Simples/Model/Resource/Cache.html", "link": "Simples/Model/Resource/Cache.html#method_cacheGet", "name": "Simples\\Model\\Resource\\Cache::cacheGet", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\Cache", "fromLink": "Simples/Model/Resource/Cache.html", "link": "Simples/Model/Resource/Cache.html#method_cacheHas", "name": "Simples\\Model\\Resource\\Cache::cacheHas", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\Cache", "fromLink": "Simples/Model/Resource/Cache.html", "link": "Simples/Model/Resource/Cache.html#method_cacheSet", "name": "Simples\\Model\\Resource\\Cache::cacheSet", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\Cache", "fromLink": "Simples/Model/Resource/Cache.html", "link": "Simples/Model/Resource/Cache.html#method_cacheRemove", "name": "Simples\\Model\\Resource\\Cache::cacheRemove", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Model\\Resource", "fromLink": "Simples/Model/Resource.html", "link": "Simples/Model/Resource/ModelAggregation.html", "name": "Simples\\Model\\Resource\\ModelAggregation", "doc": ""Class ModelAggregation""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelAggregation", "fromLink": "Simples/Model/Resource/ModelAggregation.html", "link": "Simples/Model/Resource/ModelAggregation.html#method_sum", "name": "Simples\\Model\\Resource\\ModelAggregation::sum", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelAggregation", "fromLink": "Simples/Model/Resource/ModelAggregation.html", "link": "Simples/Model/Resource/ModelAggregation.html#method_min", "name": "Simples\\Model\\Resource\\ModelAggregation::min", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelAggregation", "fromLink": "Simples/Model/Resource/ModelAggregation.html", "link": "Simples/Model/Resource/ModelAggregation.html#method_max", "name": "Simples\\Model\\Resource\\ModelAggregation::max", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelAggregation", "fromLink": "Simples/Model/Resource/ModelAggregation.html", "link": "Simples/Model/Resource/ModelAggregation.html#method_aggregate", "name": "Simples\\Model\\Resource\\ModelAggregation::aggregate", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Model\\Resource", "fromLink": "Simples/Model/Resource.html", "link": "Simples/Model/Resource/ModelHook.html", "name": "Simples\\Model\\Resource\\ModelHook", "doc": ""Class ModelHook""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_filterFields", "name": "Simples\\Model\\Resource\\ModelHook::filterFields", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_configureFields", "name": "Simples\\Model\\Resource\\ModelHook::configureFields", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_getDefaults", "name": "Simples\\Model\\Resource\\ModelHook::getDefaults", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_before", "name": "Simples\\Model\\Resource\\ModelHook::before", "doc": ""This method is called before the operation be executed, the changes made in Record will be save""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_after", "name": "Simples\\Model\\Resource\\ModelHook::after", "doc": ""Triggered after operation be executed, the changes made in Record has no effect in storage""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_afterDefault", "name": "Simples\\Model\\Resource\\ModelHook::afterDefault", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_afterDefaultCreate", "name": "Simples\\Model\\Resource\\ModelHook::afterDefaultCreate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_afterDefaultRead", "name": "Simples\\Model\\Resource\\ModelHook::afterDefaultRead", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_afterDefaultUpdate", "name": "Simples\\Model\\Resource\\ModelHook::afterDefaultUpdate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelHook", "fromLink": "Simples/Model/Resource/ModelHook.html", "link": "Simples/Model/Resource/ModelHook.html#method_afterDefaultDestroy", "name": "Simples\\Model\\Resource\\ModelHook::afterDefaultDestroy", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Model\\Resource", "fromLink": "Simples/Model/Resource.html", "link": "Simples/Model/Resource/ModelParser.html", "name": "Simples\\Model\\Resource\\ModelParser", "doc": ""Class ModelParser""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_parseFilterFields", "name": "Simples\\Model\\Resource\\ModelParser::parseFilterFields", "doc": ""Parse the filters of fields""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_parseFilterRules", "name": "Simples\\Model\\Resource\\ModelParser::parseFilterRules", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_parseFilterValues", "name": "Simples\\Model\\Resource\\ModelParser::parseFilterValues", "doc": ""Parse the values of the fields""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_parseReadRelations", "name": "Simples\\Model\\Resource\\ModelParser::parseReadRelations", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_previous", "name": "Simples\\Model\\Resource\\ModelParser::previous", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_getDestroyFilter", "name": "Simples\\Model\\Resource\\ModelParser::getDestroyFilter", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_configureRecord", "name": "Simples\\Model\\Resource\\ModelParser::configureRecord", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_resolveCalculated", "name": "Simples\\Model\\Resource\\ModelParser::resolveCalculated", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_resolveMutation", "name": "Simples\\Model\\Resource\\ModelParser::resolveMutation", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_resolveValue", "name": "Simples\\Model\\Resource\\ModelParser::resolveValue", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_getAvoid", "name": "Simples\\Model\\Resource\\ModelParser::getAvoid", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelParser", "fromLink": "Simples/Model/Resource/ModelParser.html", "link": "Simples/Model/Resource/ModelParser.html#method_getJSON", "name": "Simples\\Model\\Resource\\ModelParser::getJSON", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Model\\Resource", "fromLink": "Simples/Model/Resource.html", "link": "Simples/Model/Resource/ModelPivot.html", "name": "Simples\\Model\\Resource\\ModelPivot", "doc": ""Trait Pivot""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelPivot", "fromLink": "Simples/Model/Resource/ModelPivot.html", "link": "Simples/Model/Resource/ModelPivot.html#method_pivotSolver", "name": "Simples\\Model\\Resource\\ModelPivot::pivotSolver", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelPivot", "fromLink": "Simples/Model/Resource/ModelPivot.html", "link": "Simples/Model/Resource/ModelPivot.html#method_saveRelationships", "name": "Simples\\Model\\Resource\\ModelPivot::saveRelationships", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelPivot", "fromLink": "Simples/Model/Resource/ModelPivot.html", "link": "Simples/Model/Resource/ModelPivot.html#method_recoverRelationships", "name": "Simples\\Model\\Resource\\ModelPivot::recoverRelationships", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelPivot", "fromLink": "Simples/Model/Resource/ModelPivot.html", "link": "Simples/Model/Resource/ModelPivot.html#method_pivotModel", "name": "Simples\\Model\\Resource\\ModelPivot::pivotModel", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelPivot", "fromLink": "Simples/Model/Resource/ModelPivot.html", "link": "Simples/Model/Resource/ModelPivot.html#method_pivotRecover", "name": "Simples\\Model\\Resource\\ModelPivot::pivotRecover", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelPivot", "fromLink": "Simples/Model/Resource/ModelPivot.html", "link": "Simples/Model/Resource/ModelPivot.html#method_pivotSynchronize", "name": "Simples\\Model\\Resource\\ModelPivot::pivotSynchronize", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Model\\Resource", "fromLink": "Simples/Model/Resource.html", "link": "Simples/Model/Resource/ModelTimestamp.html", "name": "Simples\\Model\\Resource\\ModelTimestamp", "doc": ""Class Timestamp""},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelTimestamp", "fromLink": "Simples/Model/Resource/ModelTimestamp.html", "link": "Simples/Model/Resource/ModelTimestamp.html#method_getTimestampType", "name": "Simples\\Model\\Resource\\ModelTimestamp::getTimestampType", "doc": """"},
{"type": "Method", "fromName": "Simples\\Model\\Resource\\ModelTimestamp", "fromLink": "Simples/Model/Resource/ModelTimestamp.html", "link": "Simples/Model/Resource/ModelTimestamp.html#method_getTimestampValue", "name": "Simples\\Model\\Resource\\ModelTimestamp::getTimestampValue", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Connection.html", "name": "Simples\\Persistence\\Connection", "doc": ""Class Connection""},
{"type": "Method", "fromName": "Simples\\Persistence\\Connection", "fromLink": "Simples/Persistence/Connection.html", "link": "Simples/Persistence/Connection.html#method___construct", "name": "Simples\\Persistence\\Connection::__construct", "doc": ""Connection constructor.""},
{"type": "Method", "fromName": "Simples\\Persistence\\Connection", "fromLink": "Simples/Persistence/Connection.html", "link": "Simples/Persistence/Connection.html#method_connection", "name": "Simples\\Persistence\\Connection::connection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Connection", "fromLink": "Simples/Persistence/Connection.html", "link": "Simples/Persistence/Connection.html#method_getScope", "name": "Simples\\Persistence\\Connection::getScope", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Connection", "fromLink": "Simples/Persistence/Connection.html", "link": "Simples/Persistence/Connection.html#method_getSettings", "name": "Simples\\Persistence\\Connection::getSettings", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Connection", "fromLink": "Simples/Persistence/Connection.html", "link": "Simples/Persistence/Connection.html#method_getLogs", "name": "Simples\\Persistence\\Connection::getLogs", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Connection", "fromLink": "Simples/Persistence/Connection.html", "link": "Simples/Persistence/Connection.html#method_addLog", "name": "Simples\\Persistence\\Connection::addLog", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Driver.html", "name": "Simples\\Persistence\\Driver", "doc": ""Interface Driver""},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_scope", "name": "Simples\\Persistence\\Driver::scope", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_start", "name": "Simples\\Persistence\\Driver::start", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_commit", "name": "Simples\\Persistence\\Driver::commit", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_rollback", "name": "Simples\\Persistence\\Driver::rollback", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_create", "name": "Simples\\Persistence\\Driver::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_read", "name": "Simples\\Persistence\\Driver::read", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_update", "name": "Simples\\Persistence\\Driver::update", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_destroy", "name": "Simples\\Persistence\\Driver::destroy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_run", "name": "Simples\\Persistence\\Driver::run", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Driver", "fromLink": "Simples/Persistence/Driver.html", "link": "Simples/Persistence/Driver.html#method_query", "name": "Simples\\Persistence\\Driver::query", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence\\Drivers", "fromLink": "Simples/Persistence/Drivers.html", "link": "Simples/Persistence/Drivers/MySQL.html", "name": "Simples\\Persistence\\Drivers\\MySQL", "doc": ""Class MySQL""},
{"type": "Method", "fromName": "Simples\\Persistence\\Drivers\\MySQL", "fromLink": "Simples/Persistence/Drivers/MySQL.html", "link": "Simples/Persistence/Drivers/MySQL.html#method_dsn", "name": "Simples\\Persistence\\Drivers\\MySQL::dsn", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Drivers\\MySQL", "fromLink": "Simples/Persistence/Drivers/MySQL.html", "link": "Simples/Persistence/Drivers/MySQL.html#method_scope", "name": "Simples\\Persistence\\Drivers\\MySQL::scope", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Drivers\\MySQL", "fromLink": "Simples/Persistence/Drivers/MySQL.html", "link": "Simples/Persistence/Drivers/MySQL.html#method_filters", "name": "Simples\\Persistence\\Drivers\\MySQL::filters", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Drivers\\MySQL", "fromLink": "Simples/Persistence/Drivers/MySQL.html", "link": "Simples/Persistence/Drivers/MySQL.html#method_separator", "name": "Simples\\Persistence\\Drivers\\MySQL::separator", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Engine.html", "name": "Simples\\Persistence\\Engine", "doc": ""Class Engine""},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method___construct", "name": "Simples\\Persistence\\Engine::__construct", "doc": ""Engine constructor.""},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method___call", "name": "Simples\\Persistence\\Engine::__call", "doc": ""Allow associate values to properties in clausules array""},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_driver", "name": "Simples\\Persistence\\Engine::driver", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_register", "name": "Simples\\Persistence\\Engine::register", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_recover", "name": "Simples\\Persistence\\Engine::recover", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_change", "name": "Simples\\Persistence\\Engine::change", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_remove", "name": "Simples\\Persistence\\Engine::remove", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_getDriver", "name": "Simples\\Persistence\\Engine::getDriver", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_getClauses", "name": "Simples\\Persistence\\Engine::getClauses", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_getSettings", "name": "Simples\\Persistence\\Engine::getSettings", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_reset", "name": "Simples\\Persistence\\Engine::reset", "doc": ""Clear the clausules changes""},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_merge", "name": "Simples\\Persistence\\Engine::merge", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Engine", "fromLink": "Simples/Persistence/Engine.html", "link": "Simples/Persistence/Engine.html#method_clause", "name": "Simples\\Persistence\\Engine::clause", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence\\Error", "fromLink": "Simples/Persistence/Error.html", "link": "Simples/Persistence/Error/SimplesPersistenceError.html", "name": "Simples\\Persistence\\Error\\SimplesPersistenceError", "doc": ""Class PersistenceError""},
{"type": "Method", "fromName": "Simples\\Persistence\\Error\\SimplesPersistenceError", "fromLink": "Simples/Persistence/Error/SimplesPersistenceError.html", "link": "Simples/Persistence/Error/SimplesPersistenceError.html#method___construct", "name": "Simples\\Persistence\\Error\\SimplesPersistenceError::__construct", "doc": ""PersistenceError constructor.""},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Factory.html", "name": "Simples\\Persistence\\Factory", "doc": ""Class Factory""},
{"type": "Method", "fromName": "Simples\\Persistence\\Factory", "fromLink": "Simples/Persistence/Factory.html", "link": "Simples/Persistence/Factory.html#method_create", "name": "Simples\\Persistence\\Factory::create", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Field.html", "name": "Simples\\Persistence\\Field", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method___construct", "name": "Simples\\Persistence\\Field::__construct", "doc": ""Field constructor.""},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_make", "name": "Simples\\Persistence\\Field::make", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_option", "name": "Simples\\Persistence\\Field::option", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_referencedBy", "name": "Simples\\Persistence\\Field::referencedBy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_referencesTo", "name": "Simples\\Persistence\\Field::referencesTo", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_enum", "name": "Simples\\Persistence\\Field::enum", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_nullable", "name": "Simples\\Persistence\\Field::nullable", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_calculated", "name": "Simples\\Persistence\\Field::calculated", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_required", "name": "Simples\\Persistence\\Field::required", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_optional", "name": "Simples\\Persistence\\Field::optional", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_from", "name": "Simples\\Persistence\\Field::from", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_readonly", "name": "Simples\\Persistence\\Field::readonly", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_reject", "name": "Simples\\Persistence\\Field::reject", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_primaryKey", "name": "Simples\\Persistence\\Field::primaryKey", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_hashKey", "name": "Simples\\Persistence\\Field::hashKey", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_validator", "name": "Simples\\Persistence\\Field::validator", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_string", "name": "Simples\\Persistence\\Field::string", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_text", "name": "Simples\\Persistence\\Field::text", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_datetime", "name": "Simples\\Persistence\\Field::datetime", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_date", "name": "Simples\\Persistence\\Field::date", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_integer", "name": "Simples\\Persistence\\Field::integer", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_float", "name": "Simples\\Persistence\\Field::float", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_file", "name": "Simples\\Persistence\\Field::file", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_boolean", "name": "Simples\\Persistence\\Field::boolean", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_collection", "name": "Simples\\Persistence\\Field::collection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_name", "name": "Simples\\Persistence\\Field::name", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_type", "name": "Simples\\Persistence\\Field::type", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_label", "name": "Simples\\Persistence\\Field::label", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_alias", "name": "Simples\\Persistence\\Field::alias", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_create", "name": "Simples\\Persistence\\Field::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_read", "name": "Simples\\Persistence\\Field::read", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_update", "name": "Simples\\Persistence\\Field::update", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_recover", "name": "Simples\\Persistence\\Field::recover", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_mutator", "name": "Simples\\Persistence\\Field::mutator", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_expression", "name": "Simples\\Persistence\\Field::expression", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_getCollection", "name": "Simples\\Persistence\\Field::getCollection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setCollection", "name": "Simples\\Persistence\\Field::setCollection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_getName", "name": "Simples\\Persistence\\Field::getName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setName", "name": "Simples\\Persistence\\Field::setName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_getType", "name": "Simples\\Persistence\\Field::getType", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setType", "name": "Simples\\Persistence\\Field::setType", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_getLabel", "name": "Simples\\Persistence\\Field::getLabel", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setLabel", "name": "Simples\\Persistence\\Field::setLabel", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_getAlias", "name": "Simples\\Persistence\\Field::getAlias", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setAlias", "name": "Simples\\Persistence\\Field::setAlias", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_isPrimaryKey", "name": "Simples\\Persistence\\Field::isPrimaryKey", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setPrimaryKey", "name": "Simples\\Persistence\\Field::setPrimaryKey", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_isCreate", "name": "Simples\\Persistence\\Field::isCreate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setCreate", "name": "Simples\\Persistence\\Field::setCreate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_isRead", "name": "Simples\\Persistence\\Field::isRead", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setRead", "name": "Simples\\Persistence\\Field::setRead", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_isUpdate", "name": "Simples\\Persistence\\Field::isUpdate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setUpdate", "name": "Simples\\Persistence\\Field::setUpdate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_isRecover", "name": "Simples\\Persistence\\Field::isRecover", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setRecover", "name": "Simples\\Persistence\\Field::setRecover", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_setMigratory", "name": "Simples\\Persistence\\Field::setMigratory", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_isMigratory", "name": "Simples\\Persistence\\Field::isMigratory", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Field", "fromLink": "Simples/Persistence/Field.html", "link": "Simples/Persistence/Field.html#method_default", "name": "Simples\\Persistence\\Field::default", "doc": ""Class Field""},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/FieldAbstract.html", "name": "Simples\\Persistence\\FieldAbstract", "doc": ""Class FieldAbstract""},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method___call", "name": "Simples\\Persistence\\FieldAbstract::__call", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_parseName", "name": "Simples\\Persistence\\FieldAbstract::parseName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_calculate", "name": "Simples\\Persistence\\FieldAbstract::calculate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getDefault", "name": "Simples\\Persistence\\FieldAbstract::getDefault", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_isCalculated", "name": "Simples\\Persistence\\FieldAbstract::isCalculated", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_isMutable", "name": "Simples\\Persistence\\FieldAbstract::isMutable", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getOptions", "name": "Simples\\Persistence\\FieldAbstract::getOptions", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getEnum", "name": "Simples\\Persistence\\FieldAbstract::getEnum", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getReferenced", "name": "Simples\\Persistence\\FieldAbstract::getReferenced", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getReferences", "name": "Simples\\Persistence\\FieldAbstract::getReferences", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getFrom", "name": "Simples\\Persistence\\FieldAbstract::getFrom", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_hasFrom", "name": "Simples\\Persistence\\FieldAbstract::hasFrom", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getMap", "name": "Simples\\Persistence\\FieldAbstract::getMap", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FieldAbstract", "fromLink": "Simples/Persistence/FieldAbstract.html", "link": "Simples/Persistence/FieldAbstract.html#method_getValidators", "name": "Simples\\Persistence\\FieldAbstract::getValidators", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Filter.html", "name": "Simples\\Persistence\\Filter", "doc": ""Class Filter""},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method___construct", "name": "Simples\\Persistence\\Filter::__construct", "doc": ""Filter constructor.""},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_create", "name": "Simples\\Persistence\\Filter::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_apply", "name": "Simples\\Persistence\\Filter::apply", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_generate", "name": "Simples\\Persistence\\Filter::generate", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_getParsedValue", "name": "Simples\\Persistence\\Filter::getParsedValue", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_getCollection", "name": "Simples\\Persistence\\Filter::getCollection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_getName", "name": "Simples\\Persistence\\Filter::getName", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_getType", "name": "Simples\\Persistence\\Filter::getType", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_hasFrom", "name": "Simples\\Persistence\\Filter::hasFrom", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_getFrom", "name": "Simples\\Persistence\\Filter::getFrom", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_getValue", "name": "Simples\\Persistence\\Filter::getValue", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_getRule", "name": "Simples\\Persistence\\Filter::getRule", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method_isNot", "name": "Simples\\Persistence\\Filter::isNot", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Filter", "fromLink": "Simples/Persistence/Filter.html", "link": "Simples/Persistence/Filter.html#method___toString", "name": "Simples\\Persistence\\Filter::__toString", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/FilterMap.html", "name": "Simples\\Persistence\\FilterMap", "doc": ""Class FilterMap""},
{"type": "Method", "fromName": "Simples\\Persistence\\FilterMap", "fromLink": "Simples/Persistence/FilterMap.html", "link": "Simples/Persistence/FilterMap.html#method_add", "name": "Simples\\Persistence\\FilterMap::add", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FilterMap", "fromLink": "Simples/Persistence/FilterMap.html", "link": "Simples/Persistence/FilterMap.html#method_has", "name": "Simples\\Persistence\\FilterMap::has", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FilterMap", "fromLink": "Simples/Persistence/FilterMap.html", "link": "Simples/Persistence/FilterMap.html#method_get", "name": "Simples\\Persistence\\FilterMap::get", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FilterMap", "fromLink": "Simples/Persistence/FilterMap.html", "link": "Simples/Persistence/FilterMap.html#method_getValue", "name": "Simples\\Persistence\\FilterMap::getValue", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FilterMap", "fromLink": "Simples/Persistence/FilterMap.html", "link": "Simples/Persistence/FilterMap.html#method_getMarkup", "name": "Simples\\Persistence\\FilterMap::getMarkup", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FilterMap", "fromLink": "Simples/Persistence/FilterMap.html", "link": "Simples/Persistence/FilterMap.html#method_parseValue", "name": "Simples\\Persistence\\FilterMap::parseValue", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\FilterMap", "fromLink": "Simples/Persistence/FilterMap.html", "link": "Simples/Persistence/FilterMap.html#method_parseMarkup", "name": "Simples\\Persistence\\FilterMap::parseMarkup", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/Fusion.html", "name": "Simples\\Persistence\\Fusion", "doc": ""Class Fusion""},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method___construct", "name": "Simples\\Persistence\\Fusion::__construct", "doc": ""Fusion constructor.""},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_create", "name": "Simples\\Persistence\\Fusion::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_relation", "name": "Simples\\Persistence\\Fusion::relation", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_alias", "name": "Simples\\Persistence\\Fusion::alias", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_getReferenced", "name": "Simples\\Persistence\\Fusion::getReferenced", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_setReferenced", "name": "Simples\\Persistence\\Fusion::setReferenced", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_getCollection", "name": "Simples\\Persistence\\Fusion::getCollection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_setCollection", "name": "Simples\\Persistence\\Fusion::setCollection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_getReferences", "name": "Simples\\Persistence\\Fusion::getReferences", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_setReferences", "name": "Simples\\Persistence\\Fusion::setReferences", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_getSource", "name": "Simples\\Persistence\\Fusion::getSource", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_setSource", "name": "Simples\\Persistence\\Fusion::setSource", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_isExclusive", "name": "Simples\\Persistence\\Fusion::isExclusive", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_setExclusive", "name": "Simples\\Persistence\\Fusion::setExclusive", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_isRename", "name": "Simples\\Persistence\\Fusion::isRename", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\Fusion", "fromLink": "Simples/Persistence/Fusion.html", "link": "Simples/Persistence/Fusion.html#method_setRename", "name": "Simples\\Persistence\\Fusion::setRename", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence", "fromLink": "Simples/Persistence.html", "link": "Simples/Persistence/QueryBuilder.html", "name": "Simples\\Persistence\\QueryBuilder", "doc": ""Class QueryBuilder""},
{"type": "Method", "fromName": "Simples\\Persistence\\QueryBuilder", "fromLink": "Simples/Persistence/QueryBuilder.html", "link": "Simples/Persistence/QueryBuilder.html#method___construct", "name": "Simples\\Persistence\\QueryBuilder::__construct", "doc": ""QueryBuilder constructor.""},
{"type": "Method", "fromName": "Simples\\Persistence\\QueryBuilder", "fromLink": "Simples/Persistence/QueryBuilder.html", "link": "Simples/Persistence/QueryBuilder.html#method_instance", "name": "Simples\\Persistence\\QueryBuilder::instance", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\QueryBuilder", "fromLink": "Simples/Persistence/QueryBuilder.html", "link": "Simples/Persistence/QueryBuilder.html#method_commit", "name": "Simples\\Persistence\\QueryBuilder::commit", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\QueryBuilder", "fromLink": "Simples/Persistence/QueryBuilder.html", "link": "Simples/Persistence/QueryBuilder.html#method_rollback", "name": "Simples\\Persistence\\QueryBuilder::rollback", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\QueryBuilder", "fromLink": "Simples/Persistence/QueryBuilder.html", "link": "Simples/Persistence/QueryBuilder.html#method_run", "name": "Simples\\Persistence\\QueryBuilder::run", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\QueryBuilder", "fromLink": "Simples/Persistence/QueryBuilder.html", "link": "Simples/Persistence/QueryBuilder.html#method_query", "name": "Simples\\Persistence\\QueryBuilder::query", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence\\SQL", "fromLink": "Simples/Persistence/SQL.html", "link": "Simples/Persistence/SQL/Connection.html", "name": "Simples\\Persistence\\SQL\\Connection", "doc": ""Class Connection""},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Connection", "fromLink": "Simples/Persistence/SQL/Connection.html", "link": "Simples/Persistence/SQL/Connection.html#method_connection", "name": "Simples\\Persistence\\SQL\\Connection::connection", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Connection", "fromLink": "Simples/Persistence/SQL/Connection.html", "link": "Simples/Persistence/SQL/Connection.html#method_dsn", "name": "Simples\\Persistence\\SQL\\Connection::dsn", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Connection", "fromLink": "Simples/Persistence/SQL/Connection.html", "link": "Simples/Persistence/SQL/Connection.html#method_statement", "name": "Simples\\Persistence\\SQL\\Connection::statement", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Connection", "fromLink": "Simples/Persistence/SQL/Connection.html", "link": "Simples/Persistence/SQL/Connection.html#method_execute", "name": "Simples\\Persistence\\SQL\\Connection::execute", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence\\SQL", "fromLink": "Simples/Persistence/SQL.html", "link": "Simples/Persistence/SQL/Driver.html", "name": "Simples\\Persistence\\SQL\\Driver", "doc": ""Class SQLDriver""},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method___construct", "name": "Simples\\Persistence\\SQL\\Driver::__construct", "doc": ""SQLDriver constructor.""},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_start", "name": "Simples\\Persistence\\SQL\\Driver::start", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_commit", "name": "Simples\\Persistence\\SQL\\Driver::commit", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_rollback", "name": "Simples\\Persistence\\SQL\\Driver::rollback", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_create", "name": "Simples\\Persistence\\SQL\\Driver::create", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_read", "name": "Simples\\Persistence\\SQL\\Driver::read", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_update", "name": "Simples\\Persistence\\SQL\\Driver::update", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_destroy", "name": "Simples\\Persistence\\SQL\\Driver::destroy", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_run", "name": "Simples\\Persistence\\SQL\\Driver::run", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_query", "name": "Simples\\Persistence\\SQL\\Driver::query", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Driver", "fromLink": "Simples/Persistence/SQL/Driver.html", "link": "Simples/Persistence/SQL/Driver.html#method_filters", "name": "Simples\\Persistence\\SQL\\Driver::filters", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence\\SQL\\Error", "fromLink": "Simples/Persistence/SQL/Error.html", "link": "Simples/Persistence/SQL/Error/SimplesPersistenceDataError.html", "name": "Simples\\Persistence\\SQL\\Error\\SimplesPersistenceDataError", "doc": ""Class PersistenceException""},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Error\\SimplesPersistenceDataError", "fromLink": "Simples/Persistence/SQL/Error/SimplesPersistenceDataError.html", "link": "Simples/Persistence/SQL/Error/SimplesPersistenceDataError.html#method_parse", "name": "Simples\\Persistence\\SQL\\Error\\SimplesPersistenceDataError::parse", "doc": """"},
{"type": "Class", "fromName": "Simples\\Persistence\\SQL\\Error", "fromLink": "Simples/Persistence/SQL/Error.html", "link": "Simples/Persistence/SQL/Error/SimplesUnsupportedField.html", "name": "Simples\\Persistence\\SQL\\Error\\SimplesUnsupportedField", "doc": ""Class SimplesUnsupportedField""},
{"type": "Trait", "fromName": "Simples\\Persistence\\SQL", "fromLink": "Simples/Persistence/SQL.html", "link": "Simples/Persistence/SQL/Filters.html", "name": "Simples\\Persistence\\SQL\\Filters", "doc": ""Trait Filters""},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_equal", "name": "Simples\\Persistence\\SQL\\Filters::equal", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_not", "name": "Simples\\Persistence\\SQL\\Filters::not", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_lessEqualThan", "name": "Simples\\Persistence\\SQL\\Filters::lessEqualThan", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_lessThan", "name": "Simples\\Persistence\\SQL\\Filters::lessThan", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_greaterEqualThan", "name": "Simples\\Persistence\\SQL\\Filters::greaterEqualThan", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_greaterThan", "name": "Simples\\Persistence\\SQL\\Filters::greaterThan", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_blank", "name": "Simples\\Persistence\\SQL\\Filters::blank", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Filters", "fromLink": "Simples/Persistence/SQL/Filters.html", "link": "Simples/Persistence/SQL/Filters.html#method_in", "name": "Simples\\Persistence\\SQL\\Filters::in", "doc": """"},
{"type": "Trait", "fromName": "Simples\\Persistence\\SQL", "fromLink": "Simples/Persistence/SQL.html", "link": "Simples/Persistence/SQL/Modifiers.html", "name": "Simples\\Persistence\\SQL\\Modifiers", "doc": ""Class Modifiers""},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Modifiers", "fromLink": "Simples/Persistence/SQL/Modifiers.html", "link": "Simples/Persistence/SQL/Modifiers.html#method_modifiers", "name": "Simples\\Persistence\\SQL\\Modifiers::modifiers", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Modifiers", "fromLink": "Simples/Persistence/SQL/Modifiers.html", "link": "Simples/Persistence/SQL/Modifiers.html#method_parseColumns", "name": "Simples\\Persistence\\SQL\\Modifiers::parseColumns", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Modifiers", "fromLink": "Simples/Persistence/SQL/Modifiers.html", "link": "Simples/Persistence/SQL/Modifiers.html#method_parseJoin", "name": "Simples\\Persistence\\SQL\\Modifiers::parseJoin", "doc": """"},
{"type": "Method", "fromName": "Simples\\Persistence\\SQL\\Modifiers", "fromLink": "Simples/Persistence/SQL/Modifiers.html", "link": "Simples/Persistence/SQL/Modifiers.html#method_parseWhere", "name": "Simples\\Persistence\\SQL\\Modifiers::parseWhere", "doc": """"},