-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc-index.html
More file actions
1250 lines (1238 loc) · 343 KB
/
Copy pathdoc-index.html
File metadata and controls
1250 lines (1238 loc) · 343 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="index, follow, all" />
<title>Index | Simples</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/sami.css">
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/typeahead.min.js"></script>
<script src="sami.js"></script>
<meta name="MobileOptimized" content="width">
<meta name="HandheldFriendly" content="true">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1">
</head>
<body id="doc-index" data-name="" data-root-path="">
<div id="content">
<div id="left-column">
<div id="control-panel">
<script>
$('option[data-version="'+window.projectVersion+'"]').prop('selected', true);
</script>
<form id="search-form" action="search.html" method="GET">
<span class="glyphicon glyphicon-search"></span>
<input name="search"
class="typeahead form-control"
type="search"
placeholder="Search">
</form>
</div>
<div id="api-tree"></div>
</div>
<div id="right-column">
<nav id="site-nav" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-elements">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Simples</a>
</div>
<div class="collapse navbar-collapse" id="navbar-elements">
<ul class="nav navbar-nav">
<li><a href="classes.html">Classes</a></li>
<li><a href="namespaces.html">Namespaces</a></li>
<li><a href="interfaces.html">Interfaces</a></li>
<li><a href="traits.html">Traits</a></li>
<li><a href="doc-index.html">Index</a></li>
<li><a href="search.html">Search</a></li>
</ul>
</div>
</div>
</nav>
<div id="page-content">
<div class="page-header">
<h1>Index</h1>
</div>
<ul class="pagination">
<li><a href="#letterA">A</a></li>
<li><a href="#letterB">B</a></li>
<li><a href="#letterC">C</a></li>
<li><a href="#letterD">D</a></li>
<li><a href="#letterE">E</a></li>
<li><a href="#letterF">F</a></li>
<li><a href="#letterG">G</a></li>
<li><a href="#letterH">H</a></li>
<li><a href="#letterI">I</a></li>
<li><a href="#letterJ">J</a></li>
<li><a href="#letterK">K</a></li>
<li><a href="#letterL">L</a></li>
<li><a href="#letterM">M</a></li>
<li><a href="#letterN">N</a></li>
<li><a href="#letterO">O</a></li>
<li><a href="#letterP">P</a></li>
<li><a href="#letterQ">Q</a></li>
<li><a href="#letterR">R</a></li>
<li><a href="#letterS">S</a></li>
<li><a href="#letterT">T</a></li>
<li><a href="#letterU">U</a></li>
<li><a href="#letterV">V</a></li>
<li><a href="#letterW">W</a></li>
<li class="disabled"><a href="#letterX">X</a></li>
<li class="disabled"><a href="#letterY">Y</a></li>
<li class="disabled"><a href="#letterZ">Z</a></li>
</ul>
<h2 id="letterA">A</h2>
<dl id="index"><dt><a href="Simples/Console/Kernel/App.html"><abbr title="Simples\Console\Kernel\App">App</abbr></a> — <em>Class in namespace <a href="Simples/Console/Kernel.html">Simples\Console\Kernel</a></em></dt>
<dd>Class Console</dd><dt><a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a> — <em>Class in namespace <a href="Simples/Controller.html">Simples\Controller</a></em></dt>
<dd>Class ApiController</dd><dt><a href="Simples/Controller/ApiController.html#method_answer"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::answer</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/ApiController.html#method_applyFilter"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::applyFilter</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/QueryController.html#method_answer"><abbr title="Simples\Controller\QueryController">QueryController</abbr>::answer</a>() — <em>Method in class <a href="Simples/Controller/QueryController.html"><abbr title="Simples\Controller\QueryController">QueryController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/ViewController.html#method_answer"><abbr title="Simples\Controller\ViewController">ViewController</abbr>::answer</a>() — <em>Method in class <a href="Simples/Controller/ViewController.html"><abbr title="Simples\Controller\ViewController">ViewController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html#method_all"><abbr title="Simples\Data\Record">Record</abbr>::all</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Recover all values of the Record</dd><dt><a href="Simples/Data/Resources/AccessTrait.html"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr></a> — <em>Class in namespace <a href="Simples/Data/Resources.html">Simples\Data\Resources</a></em></dt>
<dd>Trait AccessTrait</dd><dt><a href="Simples/Data/Resources/RecordsTrait.html#method_all"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr>::all</a>() — <em>Method in class <a href="Simples/Data/Resources/RecordsTrait.html"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validation.html#method_add"><abbr title="Simples\Data\Validation">Validation</abbr>::add</a>() — <em>Method in class <a href="Simples/Data/Validation.html"><abbr title="Simples\Data\Validation">Validation</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validator.html#method_apply"><abbr title="Simples\Data\Validator">Validator</abbr>::apply</a>() — <em>Method in class <a href="Simples/Data/Validator.html"><abbr title="Simples\Data\Validator">Validator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validator.html#method_applyRules"><abbr title="Simples\Data\Validator">Validator</abbr>::applyRules</a>() — <em>Method in class <a href="Simples/Data/Validator.html"><abbr title="Simples\Data\Validator">Validator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_addDays"><abbr title="Simples\Helper\Date">Date</abbr>::addDays</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Controller.html#method_answer"><abbr title="Simples\Http\Controller">Controller</abbr>::answer</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Controller.html#method_answerContinue"><abbr title="Simples\Http\Controller">Controller</abbr>::answerContinue</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 100</dd><dt><a href="Simples/Http/Controller.html#method_answerProcessing"><abbr title="Simples\Http\Controller">Controller</abbr>::answerProcessing</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 102</dd><dt><a href="Simples/Http/Controller.html#method_answerOK"><abbr title="Simples\Http\Controller">Controller</abbr>::answerOK</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 200</dd><dt><a href="Simples/Http/Controller.html#method_answerCreated"><abbr title="Simples\Http\Controller">Controller</abbr>::answerCreated</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 201</dd><dt><a href="Simples/Http/Controller.html#method_answerAccepted"><abbr title="Simples\Http\Controller">Controller</abbr>::answerAccepted</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 202</dd><dt><a href="Simples/Http/Controller.html#method_answerNonAuthoritativeInformation"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNonAuthoritativeInformation</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 203</dd><dt><a href="Simples/Http/Controller.html#method_answerNoContent"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNoContent</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 204</dd><dt><a href="Simples/Http/Controller.html#method_answerResetContent"><abbr title="Simples\Http\Controller">Controller</abbr>::answerResetContent</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 205</dd><dt><a href="Simples/Http/Controller.html#method_answerPartialContent"><abbr title="Simples\Http\Controller">Controller</abbr>::answerPartialContent</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 206</dd><dt><a href="Simples/Http/Controller.html#method_answerMultiStatus"><abbr title="Simples\Http\Controller">Controller</abbr>::answerMultiStatus</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 207</dd><dt><a href="Simples/Http/Controller.html#method_answerAlreadyReported"><abbr title="Simples\Http\Controller">Controller</abbr>::answerAlreadyReported</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 208</dd><dt><a href="Simples/Http/Controller.html#method_answerFound"><abbr title="Simples\Http\Controller">Controller</abbr>::answerFound</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 302</dd><dt><a href="Simples/Http/Controller.html#method_answerSeeOther"><abbr title="Simples\Http\Controller">Controller</abbr>::answerSeeOther</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 303</dd><dt><a href="Simples/Http/Controller.html#method_answerNotModified"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNotModified</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 304</dd><dt><a href="Simples/Http/Controller.html#method_answerUseProxy"><abbr title="Simples\Http\Controller">Controller</abbr>::answerUseProxy</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 305</dd><dt><a href="Simples/Http/Controller.html#method_answerTemporaryRedirect"><abbr title="Simples\Http\Controller">Controller</abbr>::answerTemporaryRedirect</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 307</dd><dt><a href="Simples/Http/Controller.html#method_answerBadRequest"><abbr title="Simples\Http\Controller">Controller</abbr>::answerBadRequest</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 400</dd><dt><a href="Simples/Http/Controller.html#method_answerUnauthorized"><abbr title="Simples\Http\Controller">Controller</abbr>::answerUnauthorized</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 401</dd><dt><a href="Simples/Http/Controller.html#method_answerPaymentRequired"><abbr title="Simples\Http\Controller">Controller</abbr>::answerPaymentRequired</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 402</dd><dt><a href="Simples/Http/Controller.html#method_answerForbidden"><abbr title="Simples\Http\Controller">Controller</abbr>::answerForbidden</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 403</dd><dt><a href="Simples/Http/Controller.html#method_answerNotFound"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNotFound</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 404</dd><dt><a href="Simples/Http/Controller.html#method_answerMethodNotAllowed"><abbr title="Simples\Http\Controller">Controller</abbr>::answerMethodNotAllowed</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 405</dd><dt><a href="Simples/Http/Controller.html#method_answerNotAcceptable"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNotAcceptable</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 406</dd><dt><a href="Simples/Http/Controller.html#method_answerProxyAuthenticationRequired"><abbr title="Simples\Http\Controller">Controller</abbr>::answerProxyAuthenticationRequired</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 407</dd><dt><a href="Simples/Http/Controller.html#method_answerRequestTimeout"><abbr title="Simples\Http\Controller">Controller</abbr>::answerRequestTimeout</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 408</dd><dt><a href="Simples/Http/Controller.html#method_answerConflict"><abbr title="Simples\Http\Controller">Controller</abbr>::answerConflict</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 409</dd><dt><a href="Simples/Http/Controller.html#method_answerGone"><abbr title="Simples\Http\Controller">Controller</abbr>::answerGone</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 410</dd><dt><a href="Simples/Http/Controller.html#method_answerLengthRequired"><abbr title="Simples\Http\Controller">Controller</abbr>::answerLengthRequired</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 411</dd><dt><a href="Simples/Http/Controller.html#method_answerPreconditionFailed"><abbr title="Simples\Http\Controller">Controller</abbr>::answerPreconditionFailed</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 412</dd><dt><a href="Simples/Http/Controller.html#method_answerRequestEntityTooLarge"><abbr title="Simples\Http\Controller">Controller</abbr>::answerRequestEntityTooLarge</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 413</dd><dt><a href="Simples/Http/Controller.html#method_answerRequestURITooLarge"><abbr title="Simples\Http\Controller">Controller</abbr>::answerRequestURITooLarge</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 414</dd><dt><a href="Simples/Http/Controller.html#method_answerUnsupportedMediaType"><abbr title="Simples\Http\Controller">Controller</abbr>::answerUnsupportedMediaType</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 415</dd><dt><a href="Simples/Http/Controller.html#method_answerRequestedRangeNotSatisfiable"><abbr title="Simples\Http\Controller">Controller</abbr>::answerRequestedRangeNotSatisfiable</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 416</dd><dt><a href="Simples/Http/Controller.html#method_answerExpectationFailed"><abbr title="Simples\Http\Controller">Controller</abbr>::answerExpectationFailed</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 417</dd><dt><a href="Simples/Http/Controller.html#method_answerIAmATeapot"><abbr title="Simples\Http\Controller">Controller</abbr>::answerIAmATeapot</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 418</dd><dt><a href="Simples/Http/Controller.html#method_answerNotProcessableEntity"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNotProcessableEntity</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 422</dd><dt><a href="Simples/Http/Controller.html#method_answerLocked"><abbr title="Simples\Http\Controller">Controller</abbr>::answerLocked</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 423</dd><dt><a href="Simples/Http/Controller.html#method_answerFailedDependency"><abbr title="Simples\Http\Controller">Controller</abbr>::answerFailedDependency</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 424</dd><dt><a href="Simples/Http/Controller.html#method_answerUnorderedCollection"><abbr title="Simples\Http\Controller">Controller</abbr>::answerUnorderedCollection</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 425</dd><dt><a href="Simples/Http/Controller.html#method_answerUpgradeRequired"><abbr title="Simples\Http\Controller">Controller</abbr>::answerUpgradeRequired</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 426</dd><dt><a href="Simples/Http/Controller.html#method_answerPreconditionRequired"><abbr title="Simples\Http\Controller">Controller</abbr>::answerPreconditionRequired</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 428</dd><dt><a href="Simples/Http/Controller.html#method_answerTooManyRequests"><abbr title="Simples\Http\Controller">Controller</abbr>::answerTooManyRequests</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 429</dd><dt><a href="Simples/Http/Controller.html#method_answerRequestHeaderFieldsTooLarge"><abbr title="Simples\Http\Controller">Controller</abbr>::answerRequestHeaderFieldsTooLarge</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 431</dd><dt><a href="Simples/Http/Controller.html#method_answerInternalServerErro"><abbr title="Simples\Http\Controller">Controller</abbr>::answerInternalServerErro</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 500</dd><dt><a href="Simples/Http/Controller.html#method_answerNotImplemented"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNotImplemented</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 501</dd><dt><a href="Simples/Http/Controller.html#method_answerBadGateway"><abbr title="Simples\Http\Controller">Controller</abbr>::answerBadGateway</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 502</dd><dt><a href="Simples/Http/Controller.html#method_answerServiceUnavailable"><abbr title="Simples\Http\Controller">Controller</abbr>::answerServiceUnavailable</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 503</dd><dt><a href="Simples/Http/Controller.html#method_answerGatewayTimeout"><abbr title="Simples\Http\Controller">Controller</abbr>::answerGatewayTimeout</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 504</dd><dt><a href="Simples/Http/Controller.html#method_answerHTTPVersionNotSupported"><abbr title="Simples\Http\Controller">Controller</abbr>::answerHTTPVersionNotSupported</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 505</dd><dt><a href="Simples/Http/Controller.html#method_answerVariantAlsoNegotiates"><abbr title="Simples\Http\Controller">Controller</abbr>::answerVariantAlsoNegotiates</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 506</dd><dt><a href="Simples/Http/Controller.html#method_answerInsufficientStorage"><abbr title="Simples\Http\Controller">Controller</abbr>::answerInsufficientStorage</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 507</dd><dt><a href="Simples/Http/Controller.html#method_answerLoopDetected"><abbr title="Simples\Http\Controller">Controller</abbr>::answerLoopDetected</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 508</dd><dt><a href="Simples/Http/Controller.html#method_answerNetworkAuthenticationRequired"><abbr title="Simples\Http\Controller">Controller</abbr>::answerNetworkAuthenticationRequired</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd>// 511</dd><dt><a href="Simples/Http/Kernel/App.html"><abbr title="Simples\Http\Kernel\App">App</abbr></a> — <em>Class in namespace <a href="Simples/Http/Kernel.html">Simples\Http\Kernel</a></em></dt>
<dd>Class App</dd><dt><a href="Simples/Http/Kernel/Handler.html#method_apply"><abbr title="Simples\Http\Kernel\Handler">Handler</abbr>::apply</a>() — <em>Method in class <a href="Simples/Http/Kernel/Handler.html"><abbr title="Simples\Http\Kernel\Handler">Handler</abbr></a></em></dt>
<dd>Apply the middleware's to Match</dd><dt>$<a href="Simples/Http/Middleware/CrossOriginResourceSharing.html#property_alias"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr>#alias</a> — <em>Property in class <a href="Simples/Http/Middleware/CrossOriginResourceSharing.html"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request.html#method_addBodySource"><abbr title="Simples\Http\Request">Request</abbr>::addBodySource</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_api"><abbr title="Simples\Http\Response">Response</abbr>::api</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd>https://labs.omniti.com/labs/jsend</dd><dt><a href="Simples/Http/Response.html#method_atom"><abbr title="Simples\Http\Response">Response</abbr>::atom</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Stream.html#method_attach"><abbr title="Simples\Http\Stream">Stream</abbr>::attach</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Attach a new stream/resource to the instance.</dd><dt><a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a> — <em>Class in namespace <a href="Simples/Kernel.html">Simples\Kernel</a></em></dt>
<dd>Class App</dd><dt>$<a href="Simples/Kernel/Middleware.html#property_alias"><abbr title="Simples\Kernel\Middleware">Middleware</abbr>#alias</a> — <em>Property in class <a href="Simples/Kernel/Middleware.html"><abbr title="Simples\Kernel\Middleware">Middleware</abbr></a></em></dt>
<dd>The name of middleware, must be a string without spaces and special chars
preg_replace('/[^a-z0-9]/i', '_', $alias)</dd><dt><a href="Simples/Kernel/Middleware.html#method_alias"><abbr title="Simples\Kernel\Middleware">Middleware</abbr>::alias</a>() — <em>Method in class <a href="Simples/Kernel/Middleware.html"><abbr title="Simples\Kernel\Middleware">Middleware</abbr></a></em></dt>
<dd>Get the name of middleware to be used in pipes</dd><dt>$<a href="Simples/Message/Mail.html#property_alt"><abbr title="Simples\Message\Mail">Mail</abbr>#alt</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Message/Mail.html#property_attachments"><abbr title="Simples\Message\Mail">Mail</abbr>#attachments</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_addCC"><abbr title="Simples\Message\Mail">Mail</abbr>::addCC</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_addAttachment"><abbr title="Simples\Message\Mail">Mail</abbr>::addAttachment</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Driver.html#method_alter"><abbr title="Simples\Migration\Driver">Driver</abbr>::alter</a>() — <em>Method in class <a href="Simples/Migration/Driver.html"><abbr title="Simples\Migration\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Driver.html#method_add"><abbr title="Simples\Migration\Driver">Driver</abbr>::add</a>() — <em>Method in class <a href="Simples/Migration/Driver.html"><abbr title="Simples\Migration\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html#method_alter"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::alter</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html#method_add"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::add</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Revision.html#method_add"><abbr title="Simples\Migration\Revision">Revision</abbr>::add</a>() — <em>Method in class <a href="Simples/Migration/Revision.html"><abbr title="Simples\Migration\Revision">Revision</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/SQL/MySQL.html#method_alter"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr>::alter</a>() — <em>Method in class <a href="Simples/Migration/SQL/MySQL.html"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/SQL/MySQL.html#method_add"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr>::add</a>() — <em>Method in class <a href="Simples/Migration/SQL/MySQL.html"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Action.html"><abbr title="Simples\Model\Action">Action</abbr></a> — <em>Class in namespace <a href="Simples/Model.html">Simples\Model</a></em></dt>
<dd>Class Action</dd><dt><a href="Simples/Model/ModelAbstract.html#method_add"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::add</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelAggregation.html#method_aggregate"><abbr title="Simples\Model\Resource\ModelAggregation">ModelAggregation</abbr>::aggregate</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelAggregation.html"><abbr title="Simples\Model\Resource\ModelAggregation">ModelAggregation</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_after"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::after</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd>Triggered after operation be executed, the changes made in Record has no effect in storage</dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_afterDefault"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::afterDefault</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_afterDefaultCreate"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::afterDefaultCreate</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_afterDefaultRead"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::afterDefaultRead</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_afterDefaultUpdate"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::afterDefaultUpdate</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_afterDefaultDestroy"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::afterDefaultDestroy</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Connection.html#method_addLog"><abbr title="Simples\Persistence\Connection">Connection</abbr>::addLog</a>() — <em>Method in class <a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_alias"><abbr title="Simples\Persistence\Field">Field</abbr>::alias</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_apply"><abbr title="Simples\Persistence\Filter">Filter</abbr>::apply</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FilterMap.html#method_add"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr>::add</a>() — <em>Method in class <a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_alias"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::alias</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Base.html#method_addHeader"><abbr title="Simples\Route\Base">Base</abbr>::addHeader</a>() — <em>Method in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html#method_api"><abbr title="Simples\Route\Router">Router</abbr>::api</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a> — <em>Class in namespace <a href="Simples/Security.html">Simples\Security</a></em></dt>
<dd>Class Auth</dd><dt><a href="Simples/Template/Tools.html#method_asset"><abbr title="Simples\Template\Tools">Tools</abbr>::asset</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/View.html#method_append"><abbr title="Simples\Template\View">View</abbr>::append</a>() — <em>Method in class <a href="Simples/Template/View.html"><abbr title="Simples\Template\View">View</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/App.html"><abbr title="Simples\Test\App">App</abbr></a> — <em>Class in namespace <a href="Simples/Test.html">Simples\Test</a></em></dt>
<dd>Class App</dd><dt><a href="Simples/Test/Cases/API.html"><abbr title="Simples\Test\Cases\API">API</abbr></a> — <em>Class in namespace <a href="Simples/Test/Cases.html">Simples\Test\Cases</a></em></dt>
<dd>Class API</dd><dt><a href="Simples/Test/Headers/API.html"><abbr title="Simples\Test\Headers\API">API</abbr></a> — <em>Class in namespace <a href="Simples/Test/Headers.html">Simples\Test\Headers</a></em></dt>
<dd>Class API</dd><dt><a href="Simples/Test/Http/Header.html#method_all"><abbr title="Simples\Test\Http\Header">Header</abbr>::all</a>() — <em>Method in class <a href="Simples/Test/Http/Header.html"><abbr title="Simples\Test\Http\Header">Header</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a> — <em>Class in namespace <a href="Simples/Test/Scope.html">Simples\Test\Scope</a></em></dt>
<dd>Class Assert</dd><dt><a href="Simples/Test/Scope/Memory.html#method_all"><abbr title="Simples\Test\Scope\Memory">Memory</abbr>::all</a>() — <em>Method in class <a href="Simples/Test/Scope/Memory.html"><abbr title="Simples\Test\Scope\Memory">Memory</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/Scope/Test.html#property_asserts"><abbr title="Simples\Test\Scope\Test">Test</abbr>#asserts</a> — <em>Property in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd>List of asserts what will be executed</dd><dt><a href="Simples/Test/Scope/Test.html#method_add"><abbr title="Simples\Test\Scope\Test">Test</abbr>::add</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterB">B</h2>
<dl id="index"><dt><a href="Simples/Console/Kernel/App.html#method_boot"><abbr title="Simples\Console\Kernel\App">App</abbr>::boot</a>() — <em>Method in class <a href="Simples/Console/Kernel/App.html"><abbr title="Simples\Console\Kernel\App">App</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Controller.html#method_boot"><abbr title="Simples\Http\Controller">Controller</abbr>::boot</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a> — <em>Class in namespace <a href="Simples/Http/Request.html">Simples\Http\Request</a></em></dt>
<dd>Trait Body</dd><dt><a href="Simples/Kernel/App.html#method_beautifulTrace"><abbr title="Simples\Kernel\App">App</abbr>::beautifulTrace</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Kernel/Base.html"><abbr title="Simples\Kernel\Base">Base</abbr></a> — <em>Class in namespace <a href="Simples/Kernel.html">Simples\Kernel</a></em></dt>
<dd>Class Base</dd><dt>$<a href="Simples/Kernel/Container.html#property_bindings"><abbr title="Simples\Kernel\Container">Container</abbr>#bindings</a> — <em>Property in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Kernel/Wrapper.html#method_buffer"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr>::buffer</a>() — <em>Method in class <a href="Simples/Kernel/Wrapper.html"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Model/ModelAbstract.html#property_by"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>#by</a> — <em>Property in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Field registered in Auth with the user logged in</dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_before"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::before</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd>This method is called before the operation be executed, the changes made in Record will be save</dd><dt><a href="Simples/Persistence/Field.html#method_boolean"><abbr title="Simples\Persistence\Field">Field</abbr>::boolean</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_blank"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::blank</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a> — <em>Class in namespace <a href="Simples/Route.html">Simples\Route</a></em></dt>
<dd>Class Base</dd><dt>$<a href="Simples/Test/Http/Client.html#property_base"><abbr title="Simples\Test\Http\Client">Client</abbr>#base</a> — <em>Property in class <a href="Simples/Test/Http/Client.html"><abbr title="Simples\Test\Http\Client">Client</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterC">C</h2>
<dl id="index"><dt><a href="Simples/Console/ControllerService.html"><abbr title="Simples\Console\ControllerService">ControllerService</abbr></a> — <em>Class in namespace <a href="Simples/Console.html">Simples\Console</a></em></dt>
<dd>Class ControllerService</dd><dt><a href="Simples/Console/GeneratorService.html#method_create"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr>::create</a>() — <em>Method in class <a href="Simples/Console/GeneratorService.html"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Collection.html"><abbr title="Simples\Data\Collection">Collection</abbr></a> — <em>Class in namespace <a href="Simples/Data.html">Simples\Data</a></em></dt>
<dd>Class Collection</dd><dt><a href="Simples/Data/Record.html#method_copy"><abbr title="Simples\Data\Record">Record</abbr>::copy</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Copy the value of one index to another</dd><dt><a href="Simples/Data/Resources/IteratorTrait.html#method_current"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr>::current</a>() — <em>Method in class <a href="Simples/Data/Resources/IteratorTrait.html"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_create"><abbr title="Simples\Helper\Date">Date</abbr>::create</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Directory.html#method_count"><abbr title="Simples\Helper\Directory">Directory</abbr>::count</a>() — <em>Method in class <a href="Simples/Helper/Directory.html"><abbr title="Simples\Helper\Directory">Directory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_copy"><abbr title="Simples\Helper\File">File</abbr>::copy</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Text.html#method_contains"><abbr title="Simples\Helper\Text">Text</abbr>::contains</a>() — <em>Method in class <a href="Simples/Helper/Text.html"><abbr title="Simples\Helper\Text">Text</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a> — <em>Class in namespace <a href="Simples/Http.html">Simples\Http</a></em></dt>
<dd></dd><dt><a href="Simples/Http/Middleware/CrossOriginResourceSharing.html"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr></a> — <em>Class in namespace <a href="Simples/Http/Middleware.html">Simples\Http\Middleware</a></em></dt>
<dd>Class CrossOriginResourceSharing</dd><dt><a href="Simples/Http/Middleware/CrossOriginResourceSharing.html#method_configurePreFlight"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr>::configurePreFlight</a>() — <em>Method in class <a href="Simples/Http/Middleware/CrossOriginResourceSharing.html"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Middleware/CrossOriginResourceSharing.html#method_configureResponse"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr>::configureResponse</a>() — <em>Method in class <a href="Simples/Http/Middleware/CrossOriginResourceSharing.html"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Http/Response.html#property_CONTENT_TYPES"><abbr title="Simples\Http\Response">Response</abbr>#CONTENT_TYPES</a> — <em>Property in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_css"><abbr title="Simples\Http\Response">Response</abbr>::css</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Stream.html#method_close"><abbr title="Simples\Http\Stream">Stream</abbr>::close</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Closes the stream and any underlying resources.</dd><dt><a href="Simples/Kernel/App.html#method_cli"><abbr title="Simples\Kernel\App">App</abbr>::cli</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd>Handler to cli services, provide a interface to access services</dd><dt>$<a href="Simples/Kernel/Base.html#property_configs"><abbr title="Simples\Kernel\Base">Base</abbr>#configs</a> — <em>Property in class <a href="Simples/Kernel/Base.html"><abbr title="Simples\Kernel\Base">Base</abbr></a></em></dt>
<dd>On the fly configs of App gets on config folder</dd><dt><a href="Simples/Kernel/Base.html#method_config"><abbr title="Simples\Kernel\Base">Base</abbr>::config</a>() — <em>Method in class <a href="Simples/Kernel/Base.html"><abbr title="Simples\Kernel\Base">Base</abbr></a></em></dt>
<dd>Interface to get config values</dd><dt><a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a> — <em>Class in namespace <a href="Simples/Kernel.html">Simples\Kernel</a></em></dt>
<dd>Class Container</dd><dt>$<a href="Simples/Message/Mail.html#property_ccs"><abbr title="Simples\Message\Mail">Mail</abbr>#ccs</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Driver.html#method_create"><abbr title="Simples\Migration\Driver">Driver</abbr>::create</a>() — <em>Method in class <a href="Simples/Migration/Driver.html"><abbr title="Simples\Migration\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Driver.html#method_change"><abbr title="Simples\Migration\Driver">Driver</abbr>::change</a>() — <em>Method in class <a href="Simples/Migration/Driver.html"><abbr title="Simples\Migration\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html#method_create"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::create</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html#method_change"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::change</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/SQL/MySQL.html#method_create"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr>::create</a>() — <em>Method in class <a href="Simples/Migration/SQL/MySQL.html"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/SQL/MySQL.html#method_change"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr>::change</a>() — <em>Method in class <a href="Simples/Migration/SQL/MySQL.html"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/DataMapper.html#method_construct"><abbr title="Simples\Model\DataMapper">DataMapper</abbr>::construct</a>() — <em>Method in class <a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a></em></dt>
<dd>Model constructor</dd><dt><a href="Simples/Model/DataMapper.html#method_create"><abbr title="Simples\Model\DataMapper">DataMapper</abbr>::create</a>() — <em>Method in class <a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a></em></dt>
<dd>Method with the responsibility of create a record of model</dd><dt><a href="Simples/Model/DataMapper.html#method_count"><abbr title="Simples\Model\DataMapper">DataMapper</abbr>::count</a>() — <em>Method in class <a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a></em></dt>
<dd>Get total of records based on filters</dd><dt>$<a href="Simples/Model/ModelAbstract.html#property_connection"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>#connection</a> — <em>Property in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Connection id</dd><dt>$<a href="Simples/Model/ModelAbstract.html#property_createKeys"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>#createKeys</a> — <em>Property in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Fields to persist the creation object</dd><dt><a href="Simples/Model/ModelAbstract.html#method_configure"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::configure</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Configure the instance with reference properties</dd><dt><a href="Simples/Model/ModelAbstract.html#method_count"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::count</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Get total of records based on filters</dd><dt><a href="Simples/Model/ModelContract.html#method_create"><abbr title="Simples\Model\ModelContract">ModelContract</abbr>::create</a>() — <em>Method in class <a href="Simples/Model/ModelContract.html"><abbr title="Simples\Model\ModelContract">ModelContract</abbr></a></em></dt>
<dd>Method with the responsibility of create a record of model</dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_create"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::create</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_count"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::count</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_clean"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::clean</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/Cache.html"><abbr title="Simples\Model\Resource\Cache">Cache</abbr></a> — <em>Class in namespace <a href="Simples/Model/Resource.html">Simples\Model\Resource</a></em></dt>
<dd>Class Cache</dd><dt><a href="Simples/Model/Resource/Cache.html#method_cacheGet"><abbr title="Simples\Model\Resource\Cache">Cache</abbr>::cacheGet</a>() — <em>Method in class <a href="Simples/Model/Resource/Cache.html"><abbr title="Simples\Model\Resource\Cache">Cache</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/Cache.html#method_cacheHas"><abbr title="Simples\Model\Resource\Cache">Cache</abbr>::cacheHas</a>() — <em>Method in class <a href="Simples/Model/Resource/Cache.html"><abbr title="Simples\Model\Resource\Cache">Cache</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/Cache.html#method_cacheSet"><abbr title="Simples\Model\Resource\Cache">Cache</abbr>::cacheSet</a>() — <em>Method in class <a href="Simples/Model/Resource/Cache.html"><abbr title="Simples\Model\Resource\Cache">Cache</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/Cache.html#method_cacheRemove"><abbr title="Simples\Model\Resource\Cache">Cache</abbr>::cacheRemove</a>() — <em>Method in class <a href="Simples/Model/Resource/Cache.html"><abbr title="Simples\Model\Resource\Cache">Cache</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_configureFields"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::configureFields</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_configureRecord"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::configureRecord</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class Connection</dd><dt><a href="Simples/Persistence/Connection.html#method_connection"><abbr title="Simples\Persistence\Connection">Connection</abbr>::connection</a>() — <em>Method in class <a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Driver.html#method_commit"><abbr title="Simples\Persistence\Driver">Driver</abbr>::commit</a>() — <em>Method in class <a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Driver.html#method_create"><abbr title="Simples\Persistence\Driver">Driver</abbr>::create</a>() — <em>Method in class <a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_change"><abbr title="Simples\Persistence\Engine">Engine</abbr>::change</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_clause"><abbr title="Simples\Persistence\Engine">Engine</abbr>::clause</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Factory.html#method_create"><abbr title="Simples\Persistence\Factory">Factory</abbr>::create</a>() — <em>Method in class <a href="Simples/Persistence/Factory.html"><abbr title="Simples\Persistence\Factory">Factory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_calculated"><abbr title="Simples\Persistence\Field">Field</abbr>::calculated</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_collection"><abbr title="Simples\Persistence\Field">Field</abbr>::collection</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_create"><abbr title="Simples\Persistence\Field">Field</abbr>::create</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/FieldAbstract.html#property_calculated"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>#calculated</a> — <em>Property in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_calculate"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::calculate</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_create"><abbr title="Simples\Persistence\Filter">Filter</abbr>::create</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_create"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::create</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/QueryBuilder.html#property_connection"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr>#connection</a> — <em>Property in class <a href="Simples/Persistence/QueryBuilder.html"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr></a></em></dt>
<dd>Defines which connection will be used</dd><dt><a href="Simples/Persistence/QueryBuilder.html#method_commit"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr>::commit</a>() — <em>Method in class <a href="Simples/Persistence/QueryBuilder.html"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Connection.html"><abbr title="Simples\Persistence\SQL\Connection">Connection</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/SQL.html">Simples\Persistence\SQL</a></em></dt>
<dd>Class Connection</dd><dt><a href="Simples/Persistence/SQL/Connection.html#method_connection"><abbr title="Simples\Persistence\SQL\Connection">Connection</abbr>::connection</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Connection.html"><abbr title="Simples\Persistence\SQL\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_commit"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::commit</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_create"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::create</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Operations/Create.html"><abbr title="Simples\Persistence\SQL\Operations\Create">Create</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/SQL/Operations.html">Simples\Persistence\SQL\Operations</a></em></dt>
<dd>Class Create</dd><dt><a href="Simples/Persistence/Transaction.html#method_commit"><abbr title="Simples\Persistence\Transaction">Transaction</abbr>::commit</a>() — <em>Method in class <a href="Simples/Persistence/Transaction.html"><abbr title="Simples\Persistence\Transaction">Transaction</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Route/Base.html#property_captor"><abbr title="Simples\Route\Base">Base</abbr>#captor</a> — <em>Property in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd>(\w+)</dd><dt><a href="Simples/Route/Base.html#method_clear"><abbr title="Simples\Route\Base">Base</abbr>::clear</a>() — <em>Method in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html#method_crypt"><abbr title="Simples\Security\Auth">Auth</abbr>::crypt</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html#method_createToken"><abbr title="Simples\Security\Auth">Auth</abbr>::createToken</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/JWT.html#method_create"><abbr title="Simples\Security\JWT">JWT</abbr>::create</a>() — <em>Method in class <a href="Simples/Security/JWT.html"><abbr title="Simples\Security\JWT">JWT</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Cases/API.html#method_compare"><abbr title="Simples\Test\Cases\API">API</abbr>::compare</a>() — <em>Method in class <a href="Simples/Test/Cases/API.html"><abbr title="Simples\Test\Cases\API">API</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Cases/API.html#method_crud"><abbr title="Simples\Test\Cases\API">API</abbr>::crud</a>() — <em>Method in class <a href="Simples/Test/Cases/API.html"><abbr title="Simples\Test\Cases\API">API</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Headers/API.html#method_configure"><abbr title="Simples\Test\Headers\API">API</abbr>::configure</a>() — <em>Method in class <a href="Simples/Test/Headers/API.html"><abbr title="Simples\Test\Headers\API">API</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Http/Client.html"><abbr title="Simples\Test\Http\Client">Client</abbr></a> — <em>Class in namespace <a href="Simples/Test/Http.html">Simples\Test\Http</a></em></dt>
<dd>Class Client</dd><dt><a href="Simples/Test/Http/Header.html#method_configure"><abbr title="Simples\Test\Http\Header">Header</abbr>::configure</a>() — <em>Method in class <a href="Simples/Test/Http/Header.html"><abbr title="Simples\Test\Http\Header">Header</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterD">D</h2>
<dl id="index"><dt><a href="Simples/Controller/ApiController.html#method_delete"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::delete</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DatabaseValidator.html"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr></a> — <em>Class in namespace <a href="Simples/Data/Validators.html">Simples\Data\Validators</a></em></dt>
<dd>Class DateValidator</dd><dt><a href="Simples/Data/Validators/DateValidator.html"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr></a> — <em>Class in namespace <a href="Simples/Data/Validators.html">Simples\Data\Validators</a></em></dt>
<dd>Class DateValidator</dd><dt><a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a> — <em>Class in namespace <a href="Simples/Helper.html">Simples\Helper</a></em></dt>
<dd>Class Date</dd><dt><a href="Simples/Helper/Date.html#method_day"><abbr title="Simples\Helper\Date">Date</abbr>::day</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_diffDays"><abbr title="Simples\Helper\Date">Date</abbr>::diffDays</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Datetime.html"><abbr title="Simples\Helper\Datetime">Datetime</abbr></a> — <em>Class in namespace <a href="Simples/Helper.html">Simples\Helper</a></em></dt>
<dd>Class Datetime</dd><dt><a href="Simples/Helper/Directory.html"><abbr title="Simples\Helper\Directory">Directory</abbr></a> — <em>Class in namespace <a href="Simples/Helper.html">Simples\Helper</a></em></dt>
<dd>Class Directory</dd><dt><a href="Simples/Helper/File.html#method_destroy"><abbr title="Simples\Helper\File">File</abbr>::destroy</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/JSON.html#method_decode"><abbr title="Simples\Helper\JSON">JSON</abbr>::decode</a>() — <em>Method in class <a href="Simples/Helper/JSON.html"><abbr title="Simples\Helper\JSON">JSON</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Contract/Delegate.html"><abbr title="Simples\Http\Contract\Delegate">Delegate</abbr></a> — <em>Class in namespace <a href="Simples/Http/Contract.html">Simples\Http\Contract</a></em></dt>
<dd>Interface Delegate</dd><dt><a href="Simples/Http/Kernel/Delegate.html"><abbr title="Simples\Http\Kernel\Delegate">Delegate</abbr></a> — <em>Class in namespace <a href="Simples/Http/Kernel.html">Simples\Http\Kernel</a></em></dt>
<dd>Class Delegate</dd><dt><a href="Simples/Http/Stream.html#method_detach"><abbr title="Simples\Http\Stream">Stream</abbr>::detach</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Separates any underlying resources from the stream.</dd><dt>$<a href="Simples/Kernel/App.html#property_default"><abbr title="Simples\Kernel\App">App</abbr>#default</a> — <em>Property in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Kernel/App.html#method_defaults"><abbr title="Simples\Kernel\App">App</abbr>::defaults</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd>Get value default created in defaults config to some class</dd><dt>$<a href="Simples/Kernel/Base.html#property_default"><abbr title="Simples\Kernel\Base">Base</abbr>#default</a> — <em>Property in class <a href="Simples/Kernel/Base.html"><abbr title="Simples\Kernel\Base">Base</abbr></a></em></dt>
<dd>Default properties of options</dd><dt><a href="Simples/Migration/Driver.html"><abbr title="Simples\Migration\Driver">Driver</abbr></a> — <em>Class in namespace <a href="Simples/Migration.html">Simples\Migration</a></em></dt>
<dd>Interface Driver</dd><dt><a href="Simples/Migration/Driver.html#method_drop"><abbr title="Simples\Migration\Driver">Driver</abbr>::drop</a>() — <em>Method in class <a href="Simples/Migration/Driver.html"><abbr title="Simples\Migration\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html#method_drop"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::drop</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Revision.html#method_down"><abbr title="Simples\Migration\Revision">Revision</abbr>::down</a>() — <em>Method in class <a href="Simples/Migration/Revision.html"><abbr title="Simples\Migration\Revision">Revision</abbr></a></em></dt>
<dd>Method what contains the instruction to down a Revision</dd><dt><a href="Simples/Migration/SQL/MySQL.html#method_drop"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr>::drop</a>() — <em>Method in class <a href="Simples/Migration/SQL/MySQL.html"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a> — <em>Class in namespace <a href="Simples/Model.html">Simples\Model</a></em></dt>
<dd>Class DataMapper</dd><dt><a href="Simples/Model/DataMapper.html#method_destroy"><abbr title="Simples\Model\DataMapper">DataMapper</abbr>::destroy</a>() — <em>Method in class <a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a></em></dt>
<dd>Remove the given record of database</dd><dt>$<a href="Simples/Model/ModelAbstract.html#property_destroyKeys"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>#destroyKeys</a> — <em>Property in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Fields to persist details about the destroy</dd><dt><a href="Simples/Model/ModelContract.html#method_destroy"><abbr title="Simples\Model\ModelContract">ModelContract</abbr>::destroy</a>() — <em>Method in class <a href="Simples/Model/ModelContract.html"><abbr title="Simples\Model\ModelContract">ModelContract</abbr></a></em></dt>
<dd>Remove the given record of database</dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_destroy"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::destroy</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Interface Driver</dd><dt><a href="Simples/Persistence/Driver.html#method_destroy"><abbr title="Simples\Persistence\Driver">Driver</abbr>::destroy</a>() — <em>Method in class <a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Drivers/MySQL.html#method_dsn"><abbr title="Simples\Persistence\Drivers\MySQL">MySQL</abbr>::dsn</a>() — <em>Method in class <a href="Simples/Persistence/Drivers/MySQL.html"><abbr title="Simples\Persistence\Drivers\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_driver"><abbr title="Simples\Persistence\Engine">Engine</abbr>::driver</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_datetime"><abbr title="Simples\Persistence\Field">Field</abbr>::datetime</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_date"><abbr title="Simples\Persistence\Field">Field</abbr>::date</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_default"><abbr title="Simples\Persistence\Field">Field</abbr>::default</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd>Class Field</dd><dt><a href="Simples/Persistence/SQL/Connection.html#method_dsn"><abbr title="Simples\Persistence\SQL\Connection">Connection</abbr>::dsn</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Connection.html"><abbr title="Simples\Persistence\SQL\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/SQL.html">Simples\Persistence\SQL</a></em></dt>
<dd>Class SQLDriver</dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_destroy"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::destroy</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Operations/Destroy.html"><abbr title="Simples\Persistence\SQL\Operations\Destroy">Destroy</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/SQL/Operations.html">Simples\Persistence\SQL\Operations</a></em></dt>
<dd>Class Destroy</dd><dt>$<a href="Simples/Route/Base.html#property_debug"><abbr title="Simples\Route\Base">Base</abbr>#debug</a> — <em>Property in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Engine.html#method_deep"><abbr title="Simples\Route\Engine">Engine</abbr>::deep</a>() — <em>Method in class <a href="Simples/Route/Engine.html"><abbr title="Simples\Route\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html#method_delete"><abbr title="Simples\Route\Router">Router</abbr>::delete</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Route/Sharable.html#property_data"><abbr title="Simples\Route\Sharable">Sharable</abbr>#data</a> — <em>Property in class <a href="Simples/Route/Sharable.html"><abbr title="Simples\Route\Sharable">Sharable</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Sharable.html#method_data"><abbr title="Simples\Route\Sharable">Sharable</abbr>::data</a>() — <em>Method in class <a href="Simples/Route/Sharable.html"><abbr title="Simples\Route\Sharable">Sharable</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Encryption.html#method_decode"><abbr title="Simples\Security\Encryption">Encryption</abbr>::decode</a>() — <em>Method in class <a href="Simples/Security/Encryption.html"><abbr title="Simples\Security\Encryption">Encryption</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Template/Tools.html#property_data"><abbr title="Simples\Template\Tools">Tools</abbr>#data</a> — <em>Property in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/App.html#property_default"><abbr title="Simples\Test\App">App</abbr>#default</a> — <em>Property in class <a href="Simples/Test/App.html"><abbr title="Simples\Test\App">App</abbr></a></em></dt>
<dd>Default properties of options</dd><dt><a href="Simples/Test/Scope/Test.html#method_delete"><abbr title="Simples\Test\Scope\Test">Test</abbr>::delete</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterE">E</h2>
<dl id="index"><dt><a href="Simples/Console/FileManager.html#method_execute"><abbr title="Simples\Console\FileManager">FileManager</abbr>::execute</a>() — <em>Method in class <a href="Simples/Console/FileManager.html"><abbr title="Simples\Console\FileManager">FileManager</abbr></a></em></dt>
<dd>Generate streams of layer(s)</dd><dt><a href="Simples/Console/GeneratorService.html#method_execute"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr>::execute</a>() — <em>Method in class <a href="Simples/Console/GeneratorService.html"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Console/GeneratorService.html#method_explain"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr>::explain</a>() — <em>Method in class <a href="Simples/Console/GeneratorService.html"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Console/HelpService.html#method_execute"><abbr title="Simples\Console\HelpService">HelpService</abbr>::execute</a>() — <em>Method in class <a href="Simples/Console/HelpService.html"><abbr title="Simples\Console\HelpService">HelpService</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Console/Service.html#method_execute"><abbr title="Simples\Console\Service">Service</abbr>::execute</a>() — <em>Method in class <a href="Simples/Console/Service.html"><abbr title="Simples\Console\Service">Service</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html#method_expose"><abbr title="Simples\Data\Record">Record</abbr>::expose</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/ManipulationTrait.html#method_each"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr>::each</a>() — <em>Method in class <a href="Simples/Data/Resources/ManipulationTrait.html"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/RecordsTrait.html#method_expose"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr>::expose</a>() — <em>Method in class <a href="Simples/Data/Resources/RecordsTrait.html"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Directory.html#method_exists"><abbr title="Simples\Helper\Directory">Directory</abbr>::exists</a>() — <em>Method in class <a href="Simples/Helper/Directory.html"><abbr title="Simples\Helper\Directory">Directory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_exists"><abbr title="Simples\Helper\File">File</abbr>::exists</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_escape"><abbr title="Simples\Helper\File">File</abbr>::escape</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_extension"><abbr title="Simples\Helper\File">File</abbr>::extension</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/JSON.html#method_encode"><abbr title="Simples\Helper\JSON">JSON</abbr>::encode</a>() — <em>Method in class <a href="Simples/Helper/JSON.html"><abbr title="Simples\Helper\JSON">JSON</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request/Extract.html"><abbr title="Simples\Http\Request\Extract">Extract</abbr></a> — <em>Class in namespace <a href="Simples/Http/Request.html">Simples\Http\Request</a></em></dt>
<dd>Trait Extract</dd><dt><a href="Simples/Http/Stream.html#method_eof"><abbr title="Simples\Http\Stream">Stream</abbr>::eof</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Returns true if the stream is at the end of the stream.</dd><dt><a href="Simples/Kernel/Container.html#method_exists"><abbr title="Simples\Kernel\Container">Container</abbr>::exists</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Checks whether a specific method is defined in a class</dd><dt><a href="Simples/Migration/Service.html#method_execute"><abbr title="Simples\Migration\Service">Service</abbr>::execute</a>() — <em>Method in class <a href="Simples/Migration/Service.html"><abbr title="Simples\Migration\Service">Service</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class Engine</dd><dt><a href="Simples/Persistence/Field.html#method_enum"><abbr title="Simples\Persistence\Field">Field</abbr>::enum</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_expression"><abbr title="Simples\Persistence\Field">Field</abbr>::expression</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/FieldAbstract.html#property_enum"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>#enum</a> — <em>Property in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Connection.html#method_execute"><abbr title="Simples\Persistence\SQL\Connection">Connection</abbr>::execute</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Connection.html"><abbr title="Simples\Persistence\SQL\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_equal"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::equal</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Console/RouteService.html#method_execute"><abbr title="Simples\Route\Console\RouteService">RouteService</abbr>::execute</a>() — <em>Method in class <a href="Simples/Route/Console/RouteService.html"><abbr title="Simples\Route\Console\RouteService">RouteService</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Engine.html"><abbr title="Simples\Route\Engine">Engine</abbr></a> — <em>Class in namespace <a href="Simples/Route.html">Simples\Route</a></em></dt>
<dd>Class Engine</dd><dt><a href="Simples/Route/Match.html#method_expose"><abbr title="Simples\Route\Match">Match</abbr>::expose</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Encryption.html"><abbr title="Simples\Security\Encryption">Encryption</abbr></a> — <em>Class in namespace <a href="Simples/Security.html">Simples\Security</a></em></dt>
<dd>Class Encryption</dd><dt><a href="Simples/Security/Encryption.html#method_encode"><abbr title="Simples\Security\Encryption">Encryption</abbr>::encode</a>() — <em>Method in class <a href="Simples/Security/Encryption.html"><abbr title="Simples\Security\Encryption">Encryption</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/View.html#method_extend"><abbr title="Simples\Template\View">View</abbr>::extend</a>() — <em>Method in class <a href="Simples/Template/View.html"><abbr title="Simples\Template\View">View</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Error/ErrorDirectoryNotFound.html"><abbr title="Simples\Test\Error\ErrorDirectoryNotFound">ErrorDirectoryNotFound</abbr></a> — <em>Class in namespace <a href="Simples/Test/Error.html">Simples\Test\Error</a></em></dt>
<dd>Class ErrorDirectoryNotFound</dd><dt><a href="Simples/Test/Scope/Environment.html"><abbr title="Simples\Test\Scope\Environment">Environment</abbr></a> — <em>Class in namespace <a href="Simples/Test/Scope.html">Simples\Test\Scope</a></em></dt>
<dd>Class Environment</dd><dt><a href="Simples/Unit/Origin.html#method_expose"><abbr title="Simples\Unit\Origin">Origin</abbr>::expose</a>() — <em>Method in class <a href="Simples/Unit/Origin.html"><abbr title="Simples\Unit\Origin">Origin</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterF">F</h2>
<dl id="index"><dt><a href="Simples/Console/FileManager.html"><abbr title="Simples\Console\FileManager">FileManager</abbr></a> — <em>Class in namespace <a href="Simples/Console.html">Simples\Console</a></em></dt>
<dd>Class FileManager</dd><dt><a href="Simples/Controller/ApiController.html#method_fast"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::fast</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/ManipulationTrait.html#method_filter"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr>::filter</a>() — <em>Method in class <a href="Simples/Data/Resources/ManipulationTrait.html"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/FileValidator.html"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr></a> — <em>Class in namespace <a href="Simples/Data/Validators.html">Simples\Data\Validators</a></em></dt>
<dd>Class FileValidator</dd><dt>$<a href="Simples/Helper/Date.html#property_format"><abbr title="Simples\Helper\Date">Date</abbr>#format</a> — <em>Property in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a> — <em>Class in namespace <a href="Simples/Helper.html">Simples\Helper</a></em></dt>
<dd>Class File</dd><dt><a href="Simples/Http/Input.html#method_filter"><abbr title="Simples\Http\Input">Input</abbr>::filter</a>() — <em>Method in class <a href="Simples/Http/Input.html"><abbr title="Simples\Http\Input">Input</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Kernel/Http.html#method_fallback"><abbr title="Simples\Http\Kernel\Http">Http</abbr>::fallback</a>() — <em>Method in class <a href="Simples/Http/Kernel/Http.html"><abbr title="Simples\Http\Kernel\Http">Http</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request/Extract.html#method_fromServer"><abbr title="Simples\Http\Request\Extract">Extract</abbr>::fromServer</a>() — <em>Method in class <a href="Simples/Http/Request/Extract.html"><abbr title="Simples\Http\Request\Extract">Extract</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Message/Mail.html#property_fromAddress"><abbr title="Simples\Message\Mail">Mail</abbr>#fromAddress</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Message/Mail.html#property_fromName"><abbr title="Simples\Message\Mail">Mail</abbr>#fromName</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Model/ModelAbstract.html#property_fields"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>#fields</a> — <em>Property in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Fields of model</dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_fields"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::fields</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_find"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::find</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_findById"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::findById</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_filterFields"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::filterFields</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Drivers/MySQL.html#method_filters"><abbr title="Simples\Persistence\Drivers\MySQL">MySQL</abbr>::filters</a>() — <em>Method in class <a href="Simples/Persistence/Drivers/MySQL.html"><abbr title="Simples\Persistence\Drivers\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Factory.html"><abbr title="Simples\Persistence\Factory">Factory</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class Factory</dd><dt><a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_from"><abbr title="Simples\Persistence\Field">Field</abbr>::from</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_float"><abbr title="Simples\Persistence\Field">Field</abbr>::float</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_file"><abbr title="Simples\Persistence\Field">Field</abbr>::file</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class FieldAbstract</dd><dt>$<a href="Simples/Persistence/FieldAbstract.html#property_from"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>#from</a> — <em>Property in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class Filter</dd><dt><a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class FilterMap</dd><dt><a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class Fusion</dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_filters"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::filters</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/SQL.html">Simples\Persistence\SQL</a></em></dt>
<dd>Trait Filters</dd><dt><a href="Simples/Route/Engine.html#method_files"><abbr title="Simples\Route\Engine">Engine</abbr>::files</a>() — <em>Method in class <a href="Simples/Route/Engine.html"><abbr title="Simples\Route\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/Scope/Environment.html#property_filename"><abbr title="Simples\Test\Scope\Environment">Environment</abbr>#filename</a> — <em>Property in class <a href="Simples/Test/Scope/Environment.html"><abbr title="Simples\Test\Scope\Environment">Environment</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterG">G</h2>
<dl id="index"><dt><a href="Simples/Console/GeneratorService.html"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr></a> — <em>Class in namespace <a href="Simples/Console.html">Simples\Console</a></em></dt>
<dd>Class GeneratorService</dd><dt><a href="Simples/Controller/ApiController.html#method_get"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::get</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/ApiController.html#method_getData"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::getData</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html#method_get"><abbr title="Simples\Data\Record">Record</abbr>::get</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Get a value of the Record</dd><dt><a href="Simples/Data/Record.html#method_getIterator"><abbr title="Simples\Data\Record">Record</abbr>::getIterator</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Retrieve an external iterator</dd><dt><a href="Simples/Data/Resources/GroupTrait.html"><abbr title="Simples\Data\Resources\GroupTrait">GroupTrait</abbr></a> — <em>Class in namespace <a href="Simples/Data/Resources.html">Simples\Data\Resources</a></em></dt>
<dd>Trait Group</dd><dt><a href="Simples/Data/Resources/GroupTrait.html#method_groupBy"><abbr title="Simples\Data\Resources\GroupTrait">GroupTrait</abbr>::groupBy</a>() — <em>Method in class <a href="Simples/Data/Resources/GroupTrait.html"><abbr title="Simples\Data\Resources\GroupTrait">GroupTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/GroupTrait.html#method_groupReduces"><abbr title="Simples\Data\Resources\GroupTrait">GroupTrait</abbr>::groupReduces</a>() — <em>Method in class <a href="Simples/Data/Resources/GroupTrait.html"><abbr title="Simples\Data\Resources\GroupTrait">GroupTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/RecordsTrait.html#method_getRecords"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr>::getRecords</a>() — <em>Method in class <a href="Simples/Data/Resources/RecordsTrait.html"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Error/SimplesRunTimeError.html#method_getDetails"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr>::getDetails</a>() — <em>Method in class <a href="Simples/Error/SimplesRunTimeError.html"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Error/SimplesRunTimeError.html#method_getStatus"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr>::getStatus</a>() — <em>Method in class <a href="Simples/Error/SimplesRunTimeError.html"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Error/SimplesRunTimeError.html#method_getContext"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr>::getContext</a>() — <em>Method in class <a href="Simples/Error/SimplesRunTimeError.html"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Directory.html#method_getFiles"><abbr title="Simples\Helper\Directory">Directory</abbr>::getFiles</a>() — <em>Method in class <a href="Simples/Helper/Directory.html"><abbr title="Simples\Helper\Directory">Directory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request.html#method_getMethod"><abbr title="Simples\Http\Request">Request</abbr>::getMethod</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request.html#method_getUri"><abbr title="Simples\Http\Request">Request</abbr>::getUri</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request.html#method_getUrl"><abbr title="Simples\Http\Request">Request</abbr>::getUrl</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request.html#method_getProtocolVersion"><abbr title="Simples\Http\Request">Request</abbr>::getProtocolVersion</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieves the HTTP protocol version as a string.</dd><dt><a href="Simples/Http/Request.html#method_getHeaders"><abbr title="Simples\Http\Request">Request</abbr>::getHeaders</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieves all message header values.</dd><dt><a href="Simples/Http/Request.html#method_getHeader"><abbr title="Simples\Http\Request">Request</abbr>::getHeader</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieves a message header value by the given case-insensitive name.</dd><dt><a href="Simples/Http/Request.html#method_getHeaderLine"><abbr title="Simples\Http\Request">Request</abbr>::getHeaderLine</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieves a comma-separated string of the values for a single header.</dd><dt><a href="Simples/Http/Request.html#method_getRequestTarget"><abbr title="Simples\Http\Request">Request</abbr>::getRequestTarget</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieves the message's request target.</dd><dt><a href="Simples/Http/Request.html#method_getServerParams"><abbr title="Simples\Http\Request">Request</abbr>::getServerParams</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieve server parameters.</dd><dt><a href="Simples/Http/Request.html#method_getCookieParams"><abbr title="Simples\Http\Request">Request</abbr>::getCookieParams</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieve cookies.</dd><dt><a href="Simples/Http/Request.html#method_getQueryParams"><abbr title="Simples\Http\Request">Request</abbr>::getQueryParams</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Retrieve query string arguments.</dd><dt><a href="Simples/Http/Request/Body.html#method_getInputs"><abbr title="Simples\Http\Request\Body">Body</abbr>::getInputs</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request/Body.html#method_getInput"><abbr title="Simples\Http\Request\Body">Body</abbr>::getInput</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request/Body.html#method_get"><abbr title="Simples\Http\Request\Body">Body</abbr>::get</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Request/Body.html#method_getAttributes"><abbr title="Simples\Http\Request\Body">Body</abbr>::getAttributes</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd>Retrieve attributes derived from the request.</dd><dt><a href="Simples/Http/Request/Body.html#method_getAttribute"><abbr title="Simples\Http\Request\Body">Body</abbr>::getAttribute</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd>Retrieve a single derived request attribute.</dd><dt><a href="Simples/Http/Request/Body.html#method_getBody"><abbr title="Simples\Http\Request\Body">Body</abbr>::getBody</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd>Gets the body of the message.</dd><dt><a href="Simples/Http/Request/Body.html#method_getParsedBody"><abbr title="Simples\Http\Request\Body">Body</abbr>::getParsedBody</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd>Retrieve any parameters provided in the request body.</dd><dt><a href="Simples/Http/Request/Body.html#method_getUploadedFiles"><abbr title="Simples\Http\Request\Body">Body</abbr>::getUploadedFiles</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd>Retrieve normalized file upload data.</dd><dt><a href="Simples/Http/Response.html#method_getStatusType"><abbr title="Simples\Http\Response">Response</abbr>::getStatusType</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/ResponseStream.html#method_getProtocolVersion"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::getProtocolVersion</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Retrieves the HTTP protocol version as a string.</dd><dt><a href="Simples/Http/ResponseStream.html#method_getHeader"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::getHeader</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Retrieves a message header value by the given case-insensitive name.</dd><dt><a href="Simples/Http/ResponseStream.html#method_getHeaderLine"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::getHeaderLine</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Retrieves a comma-separated string of the values for a single header.</dd><dt><a href="Simples/Http/ResponseStream.html#method_getStatusCode"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::getStatusCode</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Gets the response status code.</dd><dt><a href="Simples/Http/ResponseStream.html#method_getReasonPhrase"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::getReasonPhrase</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Gets the response reason phrase associated with the status code.</dd><dt><a href="Simples/Http/ResponseStream.html#method_getHeaders"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::getHeaders</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Retrieves all message header values.</dd><dt><a href="Simples/Http/ResponseStream.html#method_getBody"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::getBody</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Gets the body of the message.</dd><dt><a href="Simples/Http/Stream.html#method_getSize"><abbr title="Simples\Http\Stream">Stream</abbr>::getSize</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Get the size of the stream if known.</dd><dt><a href="Simples/Http/Stream.html#method_getContents"><abbr title="Simples\Http\Stream">Stream</abbr>::getContents</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Returns the remaining contents in a string</dd><dt><a href="Simples/Http/Stream.html#method_getMetadata"><abbr title="Simples\Http\Stream">Stream</abbr>::getMetadata</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Get stream metadata as an associative array or retrieve a specific key.</dd><dt><a href="Simples/Kernel/Container.html#method_get"><abbr title="Simples\Kernel\Container">Container</abbr>::get</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Finds an entry of the container by its identifier and returns it.</dd><dt><a href="Simples/Message/Lang.html#method_get"><abbr title="Simples\Message\Lang">Lang</abbr>::get</a>() — <em>Method in class <a href="Simples/Message/Lang.html"><abbr title="Simples\Message\Lang">Lang</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getSubject"><abbr title="Simples\Message\Mail">Mail</abbr>::getSubject</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getMessage"><abbr title="Simples\Message\Mail">Mail</abbr>::getMessage</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getToAddress"><abbr title="Simples\Message\Mail">Mail</abbr>::getToAddress</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getToName"><abbr title="Simples\Message\Mail">Mail</abbr>::getToName</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getAlt"><abbr title="Simples\Message\Mail">Mail</abbr>::getAlt</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getFromAddress"><abbr title="Simples\Message\Mail">Mail</abbr>::getFromAddress</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getFromName"><abbr title="Simples\Message\Mail">Mail</abbr>::getFromName</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getReplyToAddress"><abbr title="Simples\Message\Mail">Mail</abbr>::getReplyToAddress</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getReplyToName"><abbr title="Simples\Message\Mail">Mail</abbr>::getReplyToName</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getAttachments"><abbr title="Simples\Message\Mail">Mail</abbr>::getAttachments</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_getCcs"><abbr title="Simples\Message\Mail">Mail</abbr>::getCcs</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html#method_getInstructions"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::getInstructions</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Revision.html#method_getInstructions"><abbr title="Simples\Migration\Revision">Revision</abbr>::getInstructions</a>() — <em>Method in class <a href="Simples/Migration/Revision.html"><abbr title="Simples\Migration\Revision">Revision</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/DataMapper.html#method_getActionFields"><abbr title="Simples\Model\DataMapper">DataMapper</abbr>::getActionFields</a>() — <em>Method in class <a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_get"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::get</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_getFields"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::getFields</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_getParents"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::getParents</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_getCollection"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::getCollection</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_getRelationships"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::getRelationships</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_getPrimaryKey"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::getPrimaryKey</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_getHashKey"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::getHashKey</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_getModel"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::getModel</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_getValidator"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::getValidator</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_getFields"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::getFields</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_getHashKey"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::getHashKey</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/Resource/ValidationParser.html#method_getValidators"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr>::getValidators</a>() — <em>Method in class <a href="Simples/Model/Repository/Resource/ValidationParser.html"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html#method_getDefaults"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr>::getDefaults</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_getDestroyFilter"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::getDestroyFilter</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_getAvoid"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::getAvoid</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_getJSON"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::getJSON</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelTimestamp.html#method_getTimestampType"><abbr title="Simples\Model\Resource\ModelTimestamp">ModelTimestamp</abbr>::getTimestampType</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelTimestamp.html"><abbr title="Simples\Model\Resource\ModelTimestamp">ModelTimestamp</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelTimestamp.html#method_getTimestampValue"><abbr title="Simples\Model\Resource\ModelTimestamp">ModelTimestamp</abbr>::getTimestampValue</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelTimestamp.html"><abbr title="Simples\Model\Resource\ModelTimestamp">ModelTimestamp</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Connection.html#method_getScope"><abbr title="Simples\Persistence\Connection">Connection</abbr>::getScope</a>() — <em>Method in class <a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Connection.html#method_getSettings"><abbr title="Simples\Persistence\Connection">Connection</abbr>::getSettings</a>() — <em>Method in class <a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Connection.html#method_getLogs"><abbr title="Simples\Persistence\Connection">Connection</abbr>::getLogs</a>() — <em>Method in class <a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_getDriver"><abbr title="Simples\Persistence\Engine">Engine</abbr>::getDriver</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_getClauses"><abbr title="Simples\Persistence\Engine">Engine</abbr>::getClauses</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_getSettings"><abbr title="Simples\Persistence\Engine">Engine</abbr>::getSettings</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_getCollection"><abbr title="Simples\Persistence\Field">Field</abbr>::getCollection</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_getName"><abbr title="Simples\Persistence\Field">Field</abbr>::getName</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_getType"><abbr title="Simples\Persistence\Field">Field</abbr>::getType</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_getLabel"><abbr title="Simples\Persistence\Field">Field</abbr>::getLabel</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_getAlias"><abbr title="Simples\Persistence\Field">Field</abbr>::getAlias</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getDefault"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getDefault</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getOptions"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getOptions</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getEnum"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getEnum</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getReferenced"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getReferenced</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getReferences"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getReferences</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getFrom"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getFrom</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getMap"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getMap</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_getValidators"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::getValidators</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_generate"><abbr title="Simples\Persistence\Filter">Filter</abbr>::generate</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_getParsedValue"><abbr title="Simples\Persistence\Filter">Filter</abbr>::getParsedValue</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_getCollection"><abbr title="Simples\Persistence\Filter">Filter</abbr>::getCollection</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_getName"><abbr title="Simples\Persistence\Filter">Filter</abbr>::getName</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_getType"><abbr title="Simples\Persistence\Filter">Filter</abbr>::getType</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_getFrom"><abbr title="Simples\Persistence\Filter">Filter</abbr>::getFrom</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_getValue"><abbr title="Simples\Persistence\Filter">Filter</abbr>::getValue</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_getRule"><abbr title="Simples\Persistence\Filter">Filter</abbr>::getRule</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FilterMap.html#method_get"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr>::get</a>() — <em>Method in class <a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FilterMap.html#method_getValue"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr>::getValue</a>() — <em>Method in class <a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FilterMap.html#method_getMarkup"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr>::getMarkup</a>() — <em>Method in class <a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_getReferenced"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::getReferenced</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_getCollection"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::getCollection</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_getReferences"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::getReferences</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_getSource"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::getSource</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_greaterEqualThan"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::greaterEqualThan</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_greaterThan"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::greaterThan</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Operations/Create.html#method_getInsert"><abbr title="Simples\Persistence\SQL\Operations\Create">Create</abbr>::getInsert</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Operations/Create.html"><abbr title="Simples\Persistence\SQL\Operations\Create">Create</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Operations/Destroy.html#method_getDelete"><abbr title="Simples\Persistence\SQL\Operations\Destroy">Destroy</abbr>::getDelete</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Operations/Destroy.html"><abbr title="Simples\Persistence\SQL\Operations\Destroy">Destroy</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Operations/Read.html#method_getSelect"><abbr title="Simples\Persistence\SQL\Operations\Read">Read</abbr>::getSelect</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Operations/Read.html"><abbr title="Simples\Persistence\SQL\Operations\Read">Read</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Operations/Update.html#method_getUpdate"><abbr title="Simples\Persistence\SQL\Operations\Update">Update</abbr>::getUpdate</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Operations/Update.html"><abbr title="Simples\Persistence\SQL\Operations\Update">Update</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Base.html#method_getTrace"><abbr title="Simples\Route\Base">Base</abbr>::getTrace</a>() — <em>Method in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Base.html#method_getType"><abbr title="Simples\Route\Base">Base</abbr>::getType</a>() — <em>Method in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html#method_getMethod"><abbr title="Simples\Route\Match">Match</abbr>::getMethod</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html#method_getUri"><abbr title="Simples\Route\Match">Match</abbr>::getUri</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html#method_getPath"><abbr title="Simples\Route\Match">Match</abbr>::getPath</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html#method_getCallback"><abbr title="Simples\Route\Match">Match</abbr>::getCallback</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html#method_getParameters"><abbr title="Simples\Route\Match">Match</abbr>::getParameters</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html#method_getOptions"><abbr title="Simples\Route\Match">Match</abbr>::getOptions</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html#method_getOption"><abbr title="Simples\Route\Match">Match</abbr>::getOption</a>() — <em>Method in class <a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html#method_group"><abbr title="Simples\Route\Router">Router</abbr>::group</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd>TODO: exceptions to error input parameters</dd><dt><a href="Simples/Route/Router.html#method_get"><abbr title="Simples\Route\Router">Router</abbr>::get</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html#method_getToken"><abbr title="Simples\Security\Auth">Auth</abbr>::getToken</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html#method_getTokenValue"><abbr title="Simples\Security\Auth">Auth</abbr>::getTokenValue</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html#method_getAll"><abbr title="Simples\Security\Auth">Auth</abbr>::getAll</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html#method_get"><abbr title="Simples\Security\Auth">Auth</abbr>::get</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/Tools.html#method_get"><abbr title="Simples\Template\Tools">Tools</abbr>::get</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/View.html#method_grant"><abbr title="Simples\Template\View">View</abbr>::grant</a>() — <em>Method in class <a href="Simples/Template/View.html"><abbr title="Simples\Template\View">View</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Http/Header.html#method_get"><abbr title="Simples\Test\Http\Header">Header</abbr>::get</a>() — <em>Method in class <a href="Simples/Test/Http/Header.html"><abbr title="Simples\Test\Http\Header">Header</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getName"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getName</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getMethod"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getMethod</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getUri"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getUri</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getPath"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getPath</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getQuery"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getQuery</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getBody"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getBody</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getMatch"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getMatch</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getMessage"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getMessage</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_getEndpoint"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::getEndpoint</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Environment.html#method_get"><abbr title="Simples\Test\Scope\Environment">Environment</abbr>::get</a>() — <em>Method in class <a href="Simples/Test/Scope/Environment.html"><abbr title="Simples\Test\Scope\Environment">Environment</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Test.html#method_get"><abbr title="Simples\Test\Scope\Test">Test</abbr>::get</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterH">H</h2>
<dl id="index"><dt><a href="Simples/Console/HelpService.html"><abbr title="Simples\Console\HelpService">HelpService</abbr></a> — <em>Class in namespace <a href="Simples/Console.html">Simples\Console</a></em></dt>
<dd>Class HelpService</dd><dt><a href="Simples/Console/Kernel/App.html#method_handle"><abbr title="Simples\Console\Kernel\App">App</abbr>::handle</a>() — <em>Method in class <a href="Simples/Console/Kernel/App.html"><abbr title="Simples\Console\Kernel\App">App</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html#method_has"><abbr title="Simples\Data\Record">Record</abbr>::has</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Alias to indexOf</dd><dt>$<a href="Simples/Data/Resources/ModelTrait.html#property_higher"><abbr title="Simples\Data\Resources\ModelTrait">ModelTrait</abbr>#higher</a> — <em>Property in class <a href="Simples/Data/Resources/ModelTrait.html"><abbr title="Simples\Data\Resources\ModelTrait">ModelTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Kernel/App.html#method_handle"><abbr title="Simples\Http\Kernel\App">App</abbr>::handle</a>() — <em>Method in class <a href="Simples/Http/Kernel/App.html"><abbr title="Simples\Http\Kernel\App">App</abbr></a></em></dt>
<dd>Used to catch http requests and handle response to their</dd><dt><a href="Simples/Http/Kernel/Handler.html"><abbr title="Simples\Http\Kernel\Handler">Handler</abbr></a> — <em>Class in namespace <a href="Simples/Http/Kernel.html">Simples\Http\Kernel</a></em></dt>
<dd>Class Handler</dd><dt><a href="Simples/Http/Kernel/Http.html"><abbr title="Simples\Http\Kernel\Http">Http</abbr></a> — <em>Class in namespace <a href="Simples/Http/Kernel.html">Simples\Http\Kernel</a></em></dt>
<dd>Class Http</dd><dt><a href="Simples/Http/Kernel/Http.html#method_handle"><abbr title="Simples\Http\Kernel\Http">Http</abbr>::handle</a>() — <em>Method in class <a href="Simples/Http/Kernel/Http.html"><abbr title="Simples\Http\Kernel\Http">Http</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Middleware/HttpResponse.html"><abbr title="Simples\Http\Middleware\HttpResponse">HttpResponse</abbr></a> — <em>Class in namespace <a href="Simples/Http/Middleware.html">Simples\Http\Middleware</a></em></dt>
<dd>Class HttpResponse</dd><dt><a href="Simples/Http/Request.html#method_hasHeader"><abbr title="Simples\Http\Request">Request</abbr>::hasHeader</a>() — <em>Method in class <a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a></em></dt>
<dd>Checks if a header exists by the given case-insensitive name.</dd><dt><a href="Simples/Http/Response.html#method_header"><abbr title="Simples\Http\Response">Response</abbr>::header</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_html"><abbr title="Simples\Http\Response">Response</abbr>::html</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Http/ResponseStream.html#property_headers"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>#headers</a> — <em>Property in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/ResponseStream.html#method_hasHeader"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>::hasHeader</a>() — <em>Method in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd>Checks if a header exists by the given case-insensitive name.</dd><dt><a href="Simples/Kernel/App.html#method_http"><abbr title="Simples\Kernel\App">App</abbr>::http</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd>Used to catch http requests and handle response to their</dd><dt><a href="Simples/Kernel/Container.html#method_has"><abbr title="Simples\Kernel\Container">Container</abbr>::has</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Returns true if the container can return an entry for the given identifier.</dd><dt>$<a href="Simples/Model/ModelAbstract.html#property_hashKey"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>#hashKey</a> — <em>Property in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Field with a unique hash what can be used to find a record and can be
created by client</dd><dt><a href="Simples/Model/ModelAbstract.html#method_has"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::has</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_hashKey"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::hashKey</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_hashKey"><abbr title="Simples\Persistence\Field">Field</abbr>::hashKey</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_hasFrom"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::hasFrom</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_hasFrom"><abbr title="Simples\Persistence\Filter">Filter</abbr>::hasFrom</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FilterMap.html#method_has"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr>::has</a>() — <em>Method in class <a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Route/Base.html#property_headers"><abbr title="Simples\Route\Base">Base</abbr>#headers</a> — <em>Property in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/Tools.html#method_href"><abbr title="Simples\Template\Tools">Tools</abbr>::href</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/Tools.html#method_here"><abbr title="Simples\Template\Tools">Tools</abbr>::here</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/Cases/API.html#property_hashKey"><abbr title="Simples\Test\Cases\API">API</abbr>#hashKey</a> — <em>Property in class <a href="Simples/Test/Cases/API.html"><abbr title="Simples\Test\Cases\API">API</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/Cases/API.html#property_header"><abbr title="Simples\Test\Cases\API">API</abbr>#header</a> — <em>Property in class <a href="Simples/Test/Cases/API.html"><abbr title="Simples\Test\Cases\API">API</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Cases/API.html#method_hashKey"><abbr title="Simples\Test\Cases\API">API</abbr>::hashKey</a>() — <em>Method in class <a href="Simples/Test/Cases/API.html"><abbr title="Simples\Test\Cases\API">API</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/Headers/API.html#property_headers"><abbr title="Simples\Test\Headers\API">API</abbr>#headers</a> — <em>Property in class <a href="Simples/Test/Headers/API.html"><abbr title="Simples\Test\Headers\API">API</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Http/Header.html"><abbr title="Simples\Test\Http\Header">Header</abbr></a> — <em>Class in namespace <a href="Simples/Test/Http.html">Simples\Test\Http</a></em></dt>
<dd>Class Headers</dd><dt>$<a href="Simples/Test/Http/Header.html#property_headers"><abbr title="Simples\Test\Http\Header">Header</abbr>#headers</a> — <em>Property in class <a href="Simples/Test/Http/Header.html"><abbr title="Simples\Test\Http\Header">Header</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Http/Header.html#method_has"><abbr title="Simples\Test\Http\Header">Header</abbr>::has</a>() — <em>Method in class <a href="Simples/Test/Http/Header.html"><abbr title="Simples\Test\Http\Header">Header</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/Scope/Test.html#property_header"><abbr title="Simples\Test\Scope\Test">Test</abbr>#header</a> — <em>Property in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd>Headers to be used in requests</dd><dt><a href="Simples/Test/Scope/Test.html#method_headers"><abbr title="Simples\Test\Scope\Test">Test</abbr>::headers</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterI">I</h2>
<dl id="index"><dt><a href="Simples/Data/Record.html#method_import"><abbr title="Simples\Data\Record">Record</abbr>::import</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>This method import an array of data to record keeping the previously value of the keys</dd><dt><a href="Simples/Data/Record.html#method_indexOf"><abbr title="Simples\Data\Record">Record</abbr>::indexOf</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Check is exists a property into Record</dd><dt><a href="Simples/Data/Record.html#method_isEditable"><abbr title="Simples\Data\Record">Record</abbr>::isEditable</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Return info about editable property of the Record</dd><dt><a href="Simples/Data/Record.html#method_isEmpty"><abbr title="Simples\Data\Record">Record</abbr>::isEmpty</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Check if the Record is empty</dd><dt><a href="Simples/Data/Resources/IteratorTrait.html"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr></a> — <em>Class in namespace <a href="Simples/Data/Resources.html">Simples\Data\Resources</a></em></dt>
<dd>Trait CollectionIterator</dd><dt><a href="Simples/Data/Validator.html#method_isRequired"><abbr title="Simples\Data\Validator">Validator</abbr>::isRequired</a>() — <em>Method in class <a href="Simples/Data/Validator.html"><abbr title="Simples\Data\Validator">Validator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DatabaseValidator.html#method_isField"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr>::isField</a>() — <em>Method in class <a href="Simples/Data/Validators/DatabaseValidator.html"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DatabaseValidator.html#method_isNullable"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr>::isNullable</a>() — <em>Method in class <a href="Simples/Data/Validators/DatabaseValidator.html"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DatabaseValidator.html#method_isReject"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr>::isReject</a>() — <em>Method in class <a href="Simples/Data/Validators/DatabaseValidator.html"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DatabaseValidator.html#method_isUnique"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr>::isUnique</a>() — <em>Method in class <a href="Simples/Data/Validators/DatabaseValidator.html"><abbr title="Simples\Data\Validators\DatabaseValidator">DatabaseValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DateValidator.html#method_isDate"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr>::isDate</a>() — <em>Method in class <a href="Simples/Data/Validators/DateValidator.html"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DateValidator.html#method_isDatetime"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr>::isDatetime</a>() — <em>Method in class <a href="Simples/Data/Validators/DateValidator.html"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DateValidator.html#method_isTime"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr>::isTime</a>() — <em>Method in class <a href="Simples/Data/Validators/DateValidator.html"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DateValidator.html#method_isDateFormat"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr>::isDateFormat</a>() — <em>Method in class <a href="Simples/Data/Validators/DateValidator.html"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/DateValidator.html#method_isTimezone"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr>::isTimezone</a>() — <em>Method in class <a href="Simples/Data/Validators/DateValidator.html"><abbr title="Simples\Data\Validators\DateValidator">DateValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/FileValidator.html#method_isFile"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr>::isFile</a>() — <em>Method in class <a href="Simples/Data/Validators/FileValidator.html"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/FileValidator.html#method_isImage"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr>::isImage</a>() — <em>Method in class <a href="Simples/Data/Validators/FileValidator.html"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/FileValidator.html#method_isMimes"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr>::isMimes</a>() — <em>Method in class <a href="Simples/Data/Validators/FileValidator.html"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/FileValidator.html#method_isMimetypes"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr>::isMimetypes</a>() — <em>Method in class <a href="Simples/Data/Validators/FileValidator.html"><abbr title="Simples\Data\Validators\FileValidator">FileValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isAccepted"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isAccepted</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isActive"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isActive</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isAfter"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isAfter</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isAlpha"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isAlpha</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isAlphaDash"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isAlphaDash</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isAlphaNumeric"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isAlphaNumeric</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isArray"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isArray</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isBefore"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isBefore</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isBetween"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isBetween</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isBoolean"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isBoolean</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isConfirmed"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isConfirmed</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isDifferent"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isDifferent</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isDimensions"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isDimensions</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isDistinct"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isDistinct</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isExisting"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isExisting</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isNot"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isNot</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isPresent"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isPresent</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isRegex"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isRegex</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isRequiredIf"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isRequiredIf</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html#method_isSame"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr>::isSame</a>() — <em>Method in class <a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html#method_isDigits"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr>::isDigits</a>() — <em>Method in class <a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html#method_isDigitsBetween"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr>::isDigitsBetween</a>() — <em>Method in class <a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html#method_isFloat"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr>::isFloat</a>() — <em>Method in class <a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html#method_isInteger"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr>::isInteger</a>() — <em>Method in class <a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html#method_isMin"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr>::isMin</a>() — <em>Method in class <a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html#method_isMax"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr>::isMax</a>() — <em>Method in class <a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html#method_isNumeric"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr>::isNumeric</a>() — <em>Method in class <a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/StringValidator.html#method_isEmail"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr>::isEmail</a>() — <em>Method in class <a href="Simples/Data/Validators/StringValidator.html"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/StringValidator.html#method_isString"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr>::isString</a>() — <em>Method in class <a href="Simples/Data/Validators/StringValidator.html"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/StringValidator.html#method_isText"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr>::isText</a>() — <em>Method in class <a href="Simples/Data/Validators/StringValidator.html"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/StringValidator.html#method_isUrl"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr>::isUrl</a>() — <em>Method in class <a href="Simples/Data/Validators/StringValidator.html"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/StringValidator.html#method_isSize"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr>::isSize</a>() — <em>Method in class <a href="Simples/Data/Validators/StringValidator.html"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/StringValidator.html#method_isIp"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr>::isIp</a>() — <em>Method in class <a href="Simples/Data/Validators/StringValidator.html"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/StringValidator.html#method_isJson"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr>::isJson</a>() — <em>Method in class <a href="Simples/Data/Validators/StringValidator.html"><abbr title="Simples\Data\Validators\StringValidator">StringValidator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_isValid"><abbr title="Simples\Helper\Date">Date</abbr>::isValid</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Datetime.html#method_isValid"><abbr title="Simples\Helper\Datetime">Datetime</abbr>::isValid</a>() — <em>Method in class <a href="Simples/Helper/Datetime.html"><abbr title="Simples\Helper\Datetime">Datetime</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_isWritable"><abbr title="Simples\Helper\File">File</abbr>::isWritable</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/JSON.html#method_isJson"><abbr title="Simples\Helper\JSON">JSON</abbr>::isJson</a>() — <em>Method in class <a href="Simples/Helper/JSON.html"><abbr title="Simples\Helper\JSON">JSON</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Time.html#method_isValid"><abbr title="Simples\Helper\Time">Time</abbr>::isValid</a>() — <em>Method in class <a href="Simples/Helper/Time.html"><abbr title="Simples\Helper\Time">Time</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Controller.html#method_input"><abbr title="Simples\Http\Controller">Controller</abbr>::input</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Input.html"><abbr title="Simples\Http\Input">Input</abbr></a> — <em>Class in namespace <a href="Simples/Http.html">Simples\Http</a></em></dt>
<dd>Class Input</dd><dt><a href="Simples/Http/Middleware/CrossOriginResourceSharing.html#method_isPreFlight"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr>::isPreFlight</a>() — <em>Method in class <a href="Simples/Http/Middleware/CrossOriginResourceSharing.html"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Middleware/CrossOriginResourceSharing.html#method_isCORS"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr>::isCORS</a>() — <em>Method in class <a href="Simples/Http/Middleware/CrossOriginResourceSharing.html"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_isSuccess"><abbr title="Simples\Http\Response">Response</abbr>::isSuccess</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_isFail"><abbr title="Simples\Http\Response">Response</abbr>::isFail</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_isError"><abbr title="Simples\Http\Response">Response</abbr>::isError</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Stream.html#method_isSeekable"><abbr title="Simples\Http\Stream">Stream</abbr>::isSeekable</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Returns whether or not the stream is seekable.</dd><dt><a href="Simples/Http/Stream.html#method_isWritable"><abbr title="Simples\Http\Stream">Stream</abbr>::isWritable</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Returns whether or not the stream is writable.</dd><dt><a href="Simples/Http/Stream.html#method_isReadable"><abbr title="Simples\Http\Stream">Stream</abbr>::isReadable</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Returns whether or not the stream is readable.</dd><dt>$<a href="Simples/Kernel/Container.html#property_instance"><abbr title="Simples\Kernel\Container">Container</abbr>#instance</a> — <em>Property in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Kernel/Container.html#method_instance"><abbr title="Simples\Kernel\Container">Container</abbr>::instance</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>A singleton to a Container instance</dd><dt><a href="Simples/Kernel/Container.html#method_invoke"><abbr title="Simples\Kernel\Container">Container</abbr>::invoke</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Invoke a method of an instance of a class</dd><dt><a href="Simples/Kernel/Wrapper.html#method_info"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr>::info</a>() — <em>Method in class <a href="Simples/Kernel/Wrapper.html"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Instruction.html"><abbr title="Simples\Migration\Instruction">Instruction</abbr></a> — <em>Class in namespace <a href="Simples/Migration.html">Simples\Migration</a></em></dt>
<dd>Class Instruction</dd><dt><a href="Simples/Migration/Migrant.html#method_instance"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::instance</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_instance"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::instance</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelAbstract.html#method_import"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::import</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Allow use this field like readonly in read filtering and getting it in record</dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_instance"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::instance</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_integer"><abbr title="Simples\Persistence\Field">Field</abbr>::integer</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_isPrimaryKey"><abbr title="Simples\Persistence\Field">Field</abbr>::isPrimaryKey</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_isCreate"><abbr title="Simples\Persistence\Field">Field</abbr>::isCreate</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_isRead"><abbr title="Simples\Persistence\Field">Field</abbr>::isRead</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_isUpdate"><abbr title="Simples\Persistence\Field">Field</abbr>::isUpdate</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_isRecover"><abbr title="Simples\Persistence\Field">Field</abbr>::isRecover</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_isMigratory"><abbr title="Simples\Persistence\Field">Field</abbr>::isMigratory</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_isCalculated"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::isCalculated</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_isMutable"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::isMutable</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Filter.html#method_isNot"><abbr title="Simples\Persistence\Filter">Filter</abbr>::isNot</a>() — <em>Method in class <a href="Simples/Persistence/Filter.html"><abbr title="Simples\Persistence\Filter">Filter</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_isExclusive"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::isExclusive</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_isRename"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::isRename</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/QueryBuilder.html#method_instance"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr>::instance</a>() — <em>Method in class <a href="Simples/Persistence/QueryBuilder.html"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_in"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::in</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Sharable.html#method_in"><abbr title="Simples\Route\Sharable">Sharable</abbr>::in</a>() — <em>Method in class <a href="Simples/Route/Sharable.html"><abbr title="Simples\Route\Sharable">Sharable</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/Tools.html#method_image"><abbr title="Simples\Template\Tools">Tools</abbr>::image</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterJ">J</h2>
<dl id="index"><dt><a href="Simples/Data/Record.html#method_just"><abbr title="Simples\Data\Record">Record</abbr>::just</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Recover all values of the Record</dd><dt><a href="Simples/Helper/JSON.html"><abbr title="Simples\Helper\JSON">JSON</abbr></a> — <em>Class in namespace <a href="Simples/Helper.html">Simples\Helper</a></em></dt>
<dd>Class Json</dd><dt><a href="Simples/Http/Response.html#method_jpeg"><abbr title="Simples\Http\Response">Response</abbr>::jpeg</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_json"><abbr title="Simples\Http\Response">Response</abbr>::json</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_json"><abbr title="Simples\Message\Mail">Mail</abbr>::json</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/JWT.html"><abbr title="Simples\Security\JWT">JWT</abbr></a> — <em>Class in namespace <a href="Simples/Security.html">Simples\Security</a></em></dt>
<dd>Class Jwt</dd><dt><a href="Simples/Test/Scope/Test.html#method_jsonSerialize"><abbr title="Simples\Test\Scope\Test">Test</abbr>::jsonSerialize</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd>Specify data which should be serialized to JSON</dd><dt><a href="Simples/Unit/Origin.html#method_jsonSerialize"><abbr title="Simples\Unit\Origin">Origin</abbr>::jsonSerialize</a>() — <em>Method in class <a href="Simples/Unit/Origin.html"><abbr title="Simples\Unit\Origin">Origin</abbr></a></em></dt>
<dd>Specify data which should be serialized to JSON</dd> </dl><h2 id="letterK">K</h2>
<dl id="index"><dt><a href="Simples/Data/Record.html#method_keys"><abbr title="Simples\Data\Record">Record</abbr>::keys</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Get the name of properties managed by Record</dd><dt><a href="Simples/Data/Resources/IteratorTrait.html#method_key"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr>::key</a>() — <em>Method in class <a href="Simples/Data/Resources/IteratorTrait.html"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterL">L</h2>
<dl id="index"><dt>$<a href="Simples/Console/ControllerService.html#property_layer"><abbr title="Simples\Console\ControllerService">ControllerService</abbr>#layer</a> — <em>Property in class <a href="Simples/Console/ControllerService.html"><abbr title="Simples\Console\ControllerService">ControllerService</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Console/GeneratorService.html#property_layer"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr>#layer</a> — <em>Property in class <a href="Simples/Console/GeneratorService.html"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Console/ModelService.html#property_layer"><abbr title="Simples\Console\ModelService">ModelService</abbr>#layer</a> — <em>Property in class <a href="Simples/Console/ModelService.html"><abbr title="Simples\Console\ModelService">ModelService</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Console/RepositoryService.html#property_layer"><abbr title="Simples\Console\RepositoryService">RepositoryService</abbr>#layer</a> — <em>Property in class <a href="Simples/Console/RepositoryService.html"><abbr title="Simples\Console\RepositoryService">RepositoryService</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/ManipulationTrait.html#method_length"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr>::length</a>() — <em>Method in class <a href="Simples/Data/Resources/ManipulationTrait.html"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/LogicalValidator.html"><abbr title="Simples\Data\Validators\LogicalValidator">LogicalValidator</abbr></a> — <em>Class in namespace <a href="Simples/Data/Validators.html">Simples\Data\Validators</a></em></dt>
<dd>Class LogicalValidator</dd><dt><a href="Simples/Kernel/App.html#method_logging"><abbr title="Simples\Kernel\App">App</abbr>::logging</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd>Configure the logging level inf App</dd><dt><a href="Simples/Kernel/App.html#method_log"><abbr title="Simples\Kernel\App">App</abbr>::log</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd>Create a file with data to be analysed</dd><dt><a href="Simples/Kernel/Wrapper.html#method_log"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr>::log</a>() — <em>Method in class <a href="Simples/Kernel/Wrapper.html"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Lang.html"><abbr title="Simples\Message\Lang">Lang</abbr></a> — <em>Class in namespace <a href="Simples/Message.html">Simples\Message</a></em></dt>
<dd></dd><dt><a href="Simples/Message/Lang.html#method_locale"><abbr title="Simples\Message\Lang">Lang</abbr>::locale</a>() — <em>Method in class <a href="Simples/Message/Lang.html"><abbr title="Simples\Message\Lang">Lang</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html#method_load"><abbr title="Simples\Message\Mail">Mail</abbr>::load</a>() — <em>Method in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_log"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::log</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/Connection.html#property_logs"><abbr title="Simples\Persistence\Connection">Connection</abbr>#logs</a> — <em>Property in class <a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_label"><abbr title="Simples\Persistence\Field">Field</abbr>::label</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_lessEqualThan"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::lessEqualThan</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_lessThan"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::lessThan</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Route/Base.html#property_labels"><abbr title="Simples\Route\Base">Base</abbr>#labels</a> — <em>Property in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Engine.html#method_load"><abbr title="Simples\Route\Engine">Engine</abbr>::load</a>() — <em>Method in class <a href="Simples/Route/Engine.html"><abbr title="Simples\Route\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/App.html#method_log"><abbr title="Simples\Test\App">App</abbr>::log</a>() — <em>Method in class <a href="Simples/Test/App.html"><abbr title="Simples\Test\App">App</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterM">M</h2>
<dl id="index"><dt><a href="Simples/Console/ModelService.html"><abbr title="Simples\Console\ModelService">ModelService</abbr></a> — <em>Class in namespace <a href="Simples/Console.html">Simples\Console</a></em></dt>
<dd>Class ModelService</dd><dt><a href="Simples/Data/Collection.html#method_make"><abbr title="Simples\Data\Collection">Collection</abbr>::make</a>() — <em>Method in class <a href="Simples/Data/Collection.html"><abbr title="Simples\Data\Collection">Collection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html#method_make"><abbr title="Simples\Data\Record">Record</abbr>::make</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Factory constructor</dd><dt><a href="Simples/Data/Record.html#method_merge"><abbr title="Simples\Data\Record">Record</abbr>::merge</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>This method merge an array of data to record overriding the previously value of the keys</dd><dt><a href="Simples/Data/Resources/ManipulationTrait.html"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr></a> — <em>Class in namespace <a href="Simples/Data/Resources.html">Simples\Data\Resources</a></em></dt>
<dd>Trait CollectionManipulation</dd><dt><a href="Simples/Data/Resources/ManipulationTrait.html#method_map"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr>::map</a>() — <em>Method in class <a href="Simples/Data/Resources/ManipulationTrait.html"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/ModelTrait.html"><abbr title="Simples\Data\Resources\ModelTrait">ModelTrait</abbr></a> — <em>Class in namespace <a href="Simples/Data/Resources.html">Simples\Data\Resources</a></em></dt>
<dd>Trait CollectionModel</dd><dt>$<a href="Simples/Data/Resources/ModelTrait.html#property_model"><abbr title="Simples\Data\Resources\ModelTrait">ModelTrait</abbr>#model</a> — <em>Property in class <a href="Simples/Data/Resources/ModelTrait.html"><abbr title="Simples\Data\Resources\ModelTrait">ModelTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/ModelTrait.html#method_model"><abbr title="Simples\Data\Resources\ModelTrait">ModelTrait</abbr>::model</a>() — <em>Method in class <a href="Simples/Data/Resources/ModelTrait.html"><abbr title="Simples\Data\Resources\ModelTrait">ModelTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/MutationTrait.html"><abbr title="Simples\Data\Resources\MutationTrait">MutationTrait</abbr></a> — <em>Class in namespace <a href="Simples/Data/Resources.html">Simples\Data\Resources</a></em></dt>
<dd>Trait CollectionMutation</dd><dt>$<a href="Simples/Data/Resources/MutationTrait.html#property_mutations"><abbr title="Simples\Data\Resources\MutationTrait">MutationTrait</abbr>#mutations</a> — <em>Property in class <a href="Simples/Data/Resources/MutationTrait.html"><abbr title="Simples\Data\Resources\MutationTrait">MutationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_month"><abbr title="Simples\Helper\Date">Date</abbr>::month</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Directory.html#method_make"><abbr title="Simples\Helper\Directory">Directory</abbr>::make</a>() — <em>Method in class <a href="Simples/Helper/Directory.html"><abbr title="Simples\Helper\Directory">Directory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_mimeType"><abbr title="Simples\Helper\File">File</abbr>::mimeType</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_move"><abbr title="Simples\Helper\File">File</abbr>::move</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Contract/Middleware.html"><abbr title="Simples\Http\Contract\Middleware">Middleware</abbr></a> — <em>Class in namespace <a href="Simples/Http/Contract.html">Simples\Http\Contract</a></em></dt>
<dd>Interface Middleware</dd><dt><a href="Simples/Http/Controller.html#method_match"><abbr title="Simples\Http\Controller">Controller</abbr>::match</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_meta"><abbr title="Simples\Http\Response">Response</abbr>::meta</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Kernel/Container.html#method_make"><abbr title="Simples\Kernel\Container">Container</abbr>::make</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Resolves and created a new instance of a desired class.</dd><dt><a href="Simples/Kernel/Container.html#method_makeInstance"><abbr title="Simples\Kernel\Container">Container</abbr>::makeInstance</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Created a instance of a desired class.</dd><dt><a href="Simples/Kernel/Middleware.html"><abbr title="Simples\Kernel\Middleware">Middleware</abbr></a> — <em>Class in namespace <a href="Simples/Kernel.html">Simples\Kernel</a></em></dt>
<dd>Class Middleware</dd><dt><a href="Simples/Kernel/Wrapper.html#method_message"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr>::message</a>() — <em>Method in class <a href="Simples/Kernel/Wrapper.html"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Kernel/Wrapper.html#method_messages"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr>::messages</a>() — <em>Method in class <a href="Simples/Kernel/Wrapper.html"><abbr title="Simples\Kernel\Wrapper">Wrapper</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a> — <em>Class in namespace <a href="Simples/Message.html">Simples\Message</a></em></dt>
<dd>Class Mail</dd><dt>$<a href="Simples/Message/Mail.html#property_message"><abbr title="Simples\Message\Mail">Mail</abbr>#message</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Instruction.html#method_make"><abbr title="Simples\Migration\Instruction">Instruction</abbr>::make</a>() — <em>Method in class <a href="Simples/Migration/Instruction.html"><abbr title="Simples\Migration\Instruction">Instruction</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a> — <em>Class in namespace <a href="Simples/Migration.html">Simples\Migration</a></em></dt>
<dd>Class Migrant</dd><dt>$<a href="Simples/Migration/Migrant.html#property_model"><abbr title="Simples\Migration\Migrant">Migrant</abbr>#model</a> — <em>Property in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/SQL/MySQL.html"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr></a> — <em>Class in namespace <a href="Simples/Migration/SQL.html">Simples\Migration\SQL</a></em></dt>
<dd>Class Driver</dd><dt><a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a> — <em>Class in namespace <a href="Simples/Model.html">Simples\Model</a></em></dt>
<dd>Class AbstractModel</dd><dt><a href="Simples/Model/ModelAbstract.html#method_map"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::map</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/ModelContract.html"><abbr title="Simples\Model\ModelContract">ModelContract</abbr></a> — <em>Class in namespace <a href="Simples/Model.html">Simples\Model</a></em></dt>
<dd>Class ModelContract</dd><dt><a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a> — <em>Class in namespace <a href="Simples/Model/Repository.html">Simples\Model\Repository</a></em></dt>
<dd>Class ModelRepository</dd><dt>$<a href="Simples/Model/Repository/ModelRepository.html#property_model"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>#model</a> — <em>Property in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelAggregation.html"><abbr title="Simples\Model\Resource\ModelAggregation">ModelAggregation</abbr></a> — <em>Class in namespace <a href="Simples/Model/Resource.html">Simples\Model\Resource</a></em></dt>
<dd>Class ModelAggregation</dd><dt><a href="Simples/Model/Resource/ModelAggregation.html#method_min"><abbr title="Simples\Model\Resource\ModelAggregation">ModelAggregation</abbr>::min</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelAggregation.html"><abbr title="Simples\Model\Resource\ModelAggregation">ModelAggregation</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelAggregation.html#method_max"><abbr title="Simples\Model\Resource\ModelAggregation">ModelAggregation</abbr>::max</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelAggregation.html"><abbr title="Simples\Model\Resource\ModelAggregation">ModelAggregation</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelHook.html"><abbr title="Simples\Model\Resource\ModelHook">ModelHook</abbr></a> — <em>Class in namespace <a href="Simples/Model/Resource.html">Simples\Model\Resource</a></em></dt>
<dd>Class ModelHook</dd><dt><a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a> — <em>Class in namespace <a href="Simples/Model/Resource.html">Simples\Model\Resource</a></em></dt>
<dd>Class ModelParser</dd><dt><a href="Simples/Model/Resource/ModelPivot.html"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr></a> — <em>Class in namespace <a href="Simples/Model/Resource.html">Simples\Model\Resource</a></em></dt>
<dd>Trait Pivot</dd><dt><a href="Simples/Model/Resource/ModelTimestamp.html"><abbr title="Simples\Model\Resource\ModelTimestamp">ModelTimestamp</abbr></a> — <em>Class in namespace <a href="Simples/Model/Resource.html">Simples\Model\Resource</a></em></dt>
<dd>Class Timestamp</dd><dt><a href="Simples/Persistence/Drivers/MySQL.html"><abbr title="Simples\Persistence\Drivers\MySQL">MySQL</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/Drivers.html">Simples\Persistence\Drivers</a></em></dt>
<dd>Class MySQL</dd><dt><a href="Simples/Persistence/Engine.html#method_merge"><abbr title="Simples\Persistence\Engine">Engine</abbr>::merge</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_make"><abbr title="Simples\Persistence\Field">Field</abbr>::make</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_mutator"><abbr title="Simples\Persistence\Field">Field</abbr>::mutator</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/FieldAbstract.html#property_map"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>#map</a> — <em>Property in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/SQL.html">Simples\Persistence\SQL</a></em></dt>
<dd>Class Modifiers</dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_modifiers"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::modifiers</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Engine.html#method_match"><abbr title="Simples\Route\Engine">Engine</abbr>::match</a>() — <em>Method in class <a href="Simples/Route/Engine.html"><abbr title="Simples\Route\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Match.html"><abbr title="Simples\Route\Match">Match</abbr></a> — <em>Class in namespace <a href="Simples/Route.html">Simples\Route</a></em></dt>
<dd>Class Route</dd><dt><a href="Simples/Security/Auth.html#method_match"><abbr title="Simples\Security\Auth">Auth</abbr>::match</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/Mustache.html"><abbr title="Simples\Template\Mustache">Mustache</abbr></a> — <em>Class in namespace <a href="Simples/Template.html">Simples\Template</a></em></dt>
<dd>Trait Mustache</dd><dt><a href="Simples/Template/Tools.html#method_match"><abbr title="Simples\Template\Tools">Tools</abbr>::match</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_make"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::make</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Memory.html"><abbr title="Simples\Test\Scope\Memory">Memory</abbr></a> — <em>Class in namespace <a href="Simples/Test/Scope.html">Simples\Test\Scope</a></em></dt>
<dd>Class Memory</dd><dt><a href="Simples/Test/Scope/Set.html#method_make"><abbr title="Simples\Test\Scope\Set">Set</abbr>::make</a>() — <em>Method in class <a href="Simples/Test/Scope/Set.html"><abbr title="Simples\Test\Scope\Set">Set</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterN">N</h2>
<dl id="index"><dt><a href="Simples/Controller/ApiController.html#method_next"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::next</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/QueryController.html#method_notDestroyed"><abbr title="Simples\Controller\QueryController">QueryController</abbr>::notDestroyed</a>() — <em>Method in class <a href="Simples/Controller/QueryController.html"><abbr title="Simples\Controller\QueryController">QueryController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/IteratorTrait.html#method_next"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr>::next</a>() — <em>Method in class <a href="Simples/Data/Resources/IteratorTrait.html"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validators/NumberValidator.html"><abbr title="Simples\Data\Validators\NumberValidator">NumberValidator</abbr></a> — <em>Class in namespace <a href="Simples/Data/Validators.html">Simples\Data\Validators</a></em></dt>
<dd>Class NumberValidator</dd><dt><a href="Simples/Error/NotFoundExceptionInterface.html"><abbr title="Simples\Error\NotFoundExceptionInterface">NotFoundExceptionInterface</abbr></a> — <em>Class in namespace <a href="Simples/Error.html">Simples\Error</a></em></dt>
<dd>Class NotFoundExceptionInterface</dd><dt><a href="Simples/Helper/Date.html#method_now"><abbr title="Simples\Helper\Date">Date</abbr>::now</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_nextMonth"><abbr title="Simples\Helper\Date">Date</abbr>::nextMonth</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_normalize"><abbr title="Simples\Helper\Date">Date</abbr>::normalize</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_name"><abbr title="Simples\Helper\File">File</abbr>::name</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Input.html#method_number"><abbr title="Simples\Http\Input">Input</abbr>::number</a>() — <em>Method in class <a href="Simples/Http/Input.html"><abbr title="Simples\Http\Input">Input</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_next"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::next</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_nullable"><abbr title="Simples\Persistence\Field">Field</abbr>::nullable</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_name"><abbr title="Simples\Persistence\Field">Field</abbr>::name</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Filters.html#method_not"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr>::not</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Filters.html"><abbr title="Simples\Persistence\SQL\Filters">Filters</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterO">O</h2>
<dl id="index"><dt><a href="Simples/Console/ControllerService.html#method_others"><abbr title="Simples\Console\ControllerService">ControllerService</abbr>::others</a>() — <em>Method in class <a href="Simples/Console/ControllerService.html"><abbr title="Simples\Console\ControllerService">ControllerService</abbr></a></em></dt>
<dd>Ask for others layers</dd><dt><a href="Simples/Console/GeneratorService.html#method_others"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr>::others</a>() — <em>Method in class <a href="Simples/Console/GeneratorService.html"><abbr title="Simples\Console\GeneratorService">GeneratorService</abbr></a></em></dt>
<dd>Ask for others layers</dd><dt><a href="Simples/Console/ModelService.html#method_others"><abbr title="Simples\Console\ModelService">ModelService</abbr>::others</a>() — <em>Method in class <a href="Simples/Console/ModelService.html"><abbr title="Simples\Console\ModelService">ModelService</abbr></a></em></dt>
<dd>Ask for others layers</dd><dt><a href="Simples/Console/RepositoryService.html#method_others"><abbr title="Simples\Console\RepositoryService">RepositoryService</abbr>::others</a>() — <em>Method in class <a href="Simples/Console/RepositoryService.html"><abbr title="Simples\Console\RepositoryService">RepositoryService</abbr></a></em></dt>
<dd>Ask for others layers</dd><dt><a href="Simples/Data/Record.html#method_on"><abbr title="Simples\Data\Record">Record</abbr>::on</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html#method_off"><abbr title="Simples\Data\Record">Record</abbr>::off</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/AccessTrait.html#method_offsetExists"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr>::offsetExists</a>() — <em>Method in class <a href="Simples/Data/Resources/AccessTrait.html"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr></a></em></dt>
<dd>Whether a offset exists</dd><dt><a href="Simples/Data/Resources/AccessTrait.html#method_offsetGet"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr>::offsetGet</a>() — <em>Method in class <a href="Simples/Data/Resources/AccessTrait.html"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr></a></em></dt>
<dd>Offset to retrieve</dd><dt><a href="Simples/Data/Resources/AccessTrait.html#method_offsetSet"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr>::offsetSet</a>() — <em>Method in class <a href="Simples/Data/Resources/AccessTrait.html"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr></a></em></dt>
<dd>Offset to set</dd><dt><a href="Simples/Data/Resources/AccessTrait.html#method_offsetUnset"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr>::offsetUnset</a>() — <em>Method in class <a href="Simples/Data/Resources/AccessTrait.html"><abbr title="Simples\Data\Resources\AccessTrait">AccessTrait</abbr></a></em></dt>
<dd>Offset to unset</dd><dt><a href="Simples/Data/Resources/MutationTrait.html#method_on"><abbr title="Simples\Data\Resources\MutationTrait">MutationTrait</abbr>::on</a>() — <em>Method in class <a href="Simples/Data/Resources/MutationTrait.html"><abbr title="Simples\Data\Resources\MutationTrait">MutationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/MutationTrait.html#method_off"><abbr title="Simples\Data\Resources\MutationTrait">MutationTrait</abbr>::off</a>() — <em>Method in class <a href="Simples/Data/Resources/MutationTrait.html"><abbr title="Simples\Data\Resources\MutationTrait">MutationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Kernel/Http.html#method_output"><abbr title="Simples\Http\Kernel\Http">Http</abbr>::output</a>() — <em>Method in class <a href="Simples/Http/Kernel/Http.html"><abbr title="Simples\Http\Kernel\Http">Http</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Kernel/Base.html#property_options"><abbr title="Simples\Kernel\Base">Base</abbr>#options</a> — <em>Property in class <a href="Simples/Kernel/Base.html"><abbr title="Simples\Kernel\Base">Base</abbr></a></em></dt>
<dd>Options of App behavior</dd><dt><a href="Simples/Kernel/Base.html#method_options"><abbr title="Simples\Kernel\Base">Base</abbr>::options</a>() — <em>Method in class <a href="Simples/Kernel/Base.html"><abbr title="Simples\Kernel\Base">Base</abbr></a></em></dt>
<dd>Management to options of app</dd><dt><a href="Simples/Migration/Revision.html#method_once"><abbr title="Simples\Migration\Revision">Revision</abbr>::once</a>() — <em>Method in class <a href="Simples/Migration/Revision.html"><abbr title="Simples\Migration\Revision">Revision</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Model/ModelAbstract.html#property_order"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>#order</a> — <em>Property in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Used to determine the order of reads</dd><dt><a href="Simples/Persistence/Field.html#method_option"><abbr title="Simples\Persistence\Field">Field</abbr>::option</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_optional"><abbr title="Simples\Persistence\Field">Field</abbr>::optional</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/FieldAbstract.html#property_options"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>#options</a> — <em>Property in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Route/Base.html#property_otherWise"><abbr title="Simples\Route\Base">Base</abbr>#otherWise</a> — <em>Property in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Base.html#method_on"><abbr title="Simples\Route\Base">Base</abbr>::on</a>() — <em>Method in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html#method_otherWise"><abbr title="Simples\Route\Router">Router</abbr>::otherWise</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Sharable.html#method_out"><abbr title="Simples\Route\Sharable">Sharable</abbr>::out</a>() — <em>Method in class <a href="Simples/Route/Sharable.html"><abbr title="Simples\Route\Sharable">Sharable</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/Tools.html#method_off"><abbr title="Simples\Template\Tools">Tools</abbr>::off</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/Tools.html#method_out"><abbr title="Simples\Template\Tools">Tools</abbr>::out</a>() — <em>Method in class <a href="Simples/Template/Tools.html"><abbr title="Simples\Template\Tools">Tools</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Test/Scope/Set.html#property_options"><abbr title="Simples\Test\Scope\Set">Set</abbr>#options</a> — <em>Property in class <a href="Simples/Test/Scope/Set.html"><abbr title="Simples\Test\Scope\Set">Set</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Unit/Origin.html"><abbr title="Simples\Unit\Origin">Origin</abbr></a> — <em>Class in namespace <a href="Simples/Unit.html">Simples\Unit</a></em></dt>
<dd>Class Origin</dd> </dl><h2 id="letterP">P</h2>
<dl id="index"><dt><a href="Simples/Controller/ApiController.html#method_post"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::post</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/ApiController.html#method_put"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::put</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/ApiController.html#method_previous"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::previous</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html#method_parse"><abbr title="Simples\Data\Record">Record</abbr>::parse</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Convert data into a Record instance</dd><dt><a href="Simples/Data/Validator.html#method_parse"><abbr title="Simples\Data\Validator">Validator</abbr>::parse</a>() — <em>Method in class <a href="Simples/Data/Validator.html"><abbr title="Simples\Data\Validator">Validator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Error/SimplesRunTimeError.html#method_parse"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr>::parse</a>() — <em>Method in class <a href="Simples/Error/SimplesRunTimeError.html"><abbr title="Simples\Error\SimplesRunTimeError">SimplesRunTimeError</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Text.html#method_pad"><abbr title="Simples\Helper\Text">Text</abbr>::pad</a>() — <em>Method in class <a href="Simples/Helper/Text.html"><abbr title="Simples\Helper\Text">Text</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Contract/Delegate.html#method_process"><abbr title="Simples\Http\Contract\Delegate">Delegate</abbr>::process</a>() — <em>Method in class <a href="Simples/Http/Contract/Delegate.html"><abbr title="Simples\Http\Contract\Delegate">Delegate</abbr></a></em></dt>
<dd>Dispatch the next available middleware and return the response.</dd><dt><a href="Simples/Http/Contract/Middleware.html#method_process"><abbr title="Simples\Http\Contract\Middleware">Middleware</abbr>::process</a>() — <em>Method in class <a href="Simples/Http/Contract/Middleware.html"><abbr title="Simples\Http\Contract\Middleware">Middleware</abbr></a></em></dt>
<dd>Process an incoming server request and return a response, optionally delegating
to the next middleware component to create the response.</dd><dt><a href="Simples/Http/Kernel/Delegate.html#method_process"><abbr title="Simples\Http\Kernel\Delegate">Delegate</abbr>::process</a>() — <em>Method in class <a href="Simples/Http/Kernel/Delegate.html"><abbr title="Simples\Http\Kernel\Delegate">Delegate</abbr></a></em></dt>
<dd>Dispatch the next available middleware and return the response.</dd><dt><a href="Simples/Http/Middleware/CrossOriginResourceSharing.html#method_process"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr>::process</a>() — <em>Method in class <a href="Simples/Http/Middleware/CrossOriginResourceSharing.html"><abbr title="Simples\Http\Middleware\CrossOriginResourceSharing">CrossOriginResourceSharing</abbr></a></em></dt>
<dd>Process an incoming server request and return a response, optionally delegating
to the next middleware component to create the response.</dd><dt><a href="Simples/Http/Middleware/HttpResponse.html#method_process"><abbr title="Simples\Http\Middleware\HttpResponse">HttpResponse</abbr>::process</a>() — <em>Method in class <a href="Simples/Http/Middleware/HttpResponse.html"><abbr title="Simples\Http\Middleware\HttpResponse">HttpResponse</abbr></a></em></dt>
<dd>Process an incoming server request and return a response, optionally delegating
to the next middleware component to create the response.</dd><dt><a href="Simples/Http/Request/Body.html#method_post"><abbr title="Simples\Http\Request\Body">Body</abbr>::post</a>() — <em>Method in class <a href="Simples/Http/Request/Body.html"><abbr title="Simples\Http\Request\Body">Body</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_pdf"><abbr title="Simples\Http\Response">Response</abbr>::pdf</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_plain"><abbr title="Simples\Http\Response">Response</abbr>::plain</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Http/ResponseStream.html#property_protocol"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr>#protocol</a> — <em>Property in class <a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Kernel/App.html#method_pipe"><abbr title="Simples\Kernel\App">App</abbr>::pipe</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd>Add middleware's to pipe</dd><dt><a href="Simples/Kernel/App.html#method_pipes"><abbr title="Simples\Kernel\App">App</abbr>::pipes</a>() — <em>Method in class <a href="Simples/Kernel/App.html"><abbr title="Simples\Kernel\App">App</abbr></a></em></dt>
<dd>Add a list of middlewares to pipe</dd><dt><a href="Simples/Model/ModelAbstract.html#method_pivot"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::pivot</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_previous"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::previous</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/Resource/ValidationParser.html#method_parseValidation"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr>::parseValidation</a>() — <em>Method in class <a href="Simples/Model/Repository/Resource/ValidationParser.html"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/Resource/ValidationParser.html#method_parseValidator"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr>::parseValidator</a>() — <em>Method in class <a href="Simples/Model/Repository/Resource/ValidationParser.html"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/Resource/ValidationParser.html#method_parseValidatorRules"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr>::parseValidatorRules</a>() — <em>Method in class <a href="Simples/Model/Repository/Resource/ValidationParser.html"><abbr title="Simples\Model\Repository\Resource\ValidationParser">ValidationParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_parseFilterFields"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::parseFilterFields</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd>Parse the filters of fields</dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_parseFilterRules"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::parseFilterRules</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_parseFilterValues"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::parseFilterValues</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd>Parse the values of the fields</dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_parseReadRelations"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::parseReadRelations</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_previous"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::previous</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelPivot.html#method_pivotSolver"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr>::pivotSolver</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelPivot.html"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelPivot.html#method_pivotModel"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr>::pivotModel</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelPivot.html"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelPivot.html#method_pivotRecover"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr>::pivotRecover</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelPivot.html"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelPivot.html#method_pivotSynchronize"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr>::pivotSynchronize</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelPivot.html"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_primaryKey"><abbr title="Simples\Persistence\Field">Field</abbr>::primaryKey</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FieldAbstract.html#method_parseName"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>::parseName</a>() — <em>Method in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FilterMap.html#method_parseValue"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr>::parseValue</a>() — <em>Method in class <a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/FilterMap.html#method_parseMarkup"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr>::parseMarkup</a>() — <em>Method in class <a href="Simples/Persistence/FilterMap.html"><abbr title="Simples\Persistence\FilterMap">FilterMap</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Error/SimplesPersistenceDataError.html#method_parse"><abbr title="Simples\Persistence\SQL\Error\SimplesPersistenceDataError">SimplesPersistenceDataError</abbr>::parse</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Error/SimplesPersistenceDataError.html"><abbr title="Simples\Persistence\SQL\Error\SimplesPersistenceDataError">SimplesPersistenceDataError</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_parseColumns"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::parseColumns</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_parseJoin"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::parseJoin</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_parseWhere"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::parseWhere</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_parseGroup"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::parseGroup</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_parseOrder"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::parseOrder</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_parseHaving"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::parseHaving</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Modifiers.html#method_parseLimit"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr>::parseLimit</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Modifiers.html"><abbr title="Simples\Persistence\SQL\Modifiers">Modifiers</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Base.html#method_pattern"><abbr title="Simples\Route\Base">Base</abbr>::pattern</a>() — <em>Method in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html#method_post"><abbr title="Simples\Route\Router">Router</abbr>::post</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html#method_put"><abbr title="Simples\Route\Router">Router</abbr>::put</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html#method_patch"><abbr title="Simples\Route\Router">Router</abbr>::patch</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/JWT.html#method_payload"><abbr title="Simples\Security\JWT">JWT</abbr>::payload</a>() — <em>Method in class <a href="Simples/Security/JWT.html"><abbr title="Simples\Security\JWT">JWT</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Memory.html#method_push"><abbr title="Simples\Test\Scope\Memory">Memory</abbr>::push</a>() — <em>Method in class <a href="Simples/Test/Scope/Memory.html"><abbr title="Simples\Test\Scope\Memory">Memory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Memory.html#method_pull"><abbr title="Simples\Test\Scope\Memory">Memory</abbr>::pull</a>() — <em>Method in class <a href="Simples/Test/Scope/Memory.html"><abbr title="Simples\Test\Scope\Memory">Memory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Test.html#method_post"><abbr title="Simples\Test\Scope\Test">Test</abbr>::post</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Test.html#method_put"><abbr title="Simples\Test\Scope\Test">Test</abbr>::put</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterQ">Q</h2>
<dl id="index"><dt><a href="Simples/Controller/QueryController.html"><abbr title="Simples\Controller\QueryController">QueryController</abbr></a> — <em>Class in namespace <a href="Simples/Controller.html">Simples\Controller</a></em></dt>
<dd>Class QueryController</dd><dt>$<a href="Simples/Controller/QueryController.html#property_queryBuilder"><abbr title="Simples\Controller\QueryController">QueryController</abbr>#queryBuilder</a> — <em>Property in class <a href="Simples/Controller/QueryController.html"><abbr title="Simples\Controller\QueryController">QueryController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Date.html#method_quarter"><abbr title="Simples\Helper\Date">Date</abbr>::quarter</a>() — <em>Method in class <a href="Simples/Helper/Date.html"><abbr title="Simples\Helper\Date">Date</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Driver.html#method_query"><abbr title="Simples\Persistence\Driver">Driver</abbr>::query</a>() — <em>Method in class <a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/QueryBuilder.html"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr></a> — <em>Class in namespace <a href="Simples/Persistence.html">Simples\Persistence</a></em></dt>
<dd>Class QueryBuilder</dd><dt><a href="Simples/Persistence/QueryBuilder.html#method_query"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr>::query</a>() — <em>Method in class <a href="Simples/Persistence/QueryBuilder.html"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_query"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::query</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterR">R</h2>
<dl id="index"><dt><a href="Simples/Console/RepositoryService.html"><abbr title="Simples\Console\RepositoryService">RepositoryService</abbr></a> — <em>Class in namespace <a href="Simples/Console.html">Simples\Console</a></em></dt>
<dd>Class RepositoryService</dd><dt>$<a href="Simples/Controller/ApiController.html#property_repository"><abbr title="Simples\Controller\ApiController">ApiController</abbr>#repository</a> — <em>Property in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/ApiController.html#method_recycle"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::recycle</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a> — <em>Class in namespace <a href="Simples/Data.html">Simples\Data</a></em></dt>
<dd>Class Record</dd><dt><a href="Simples/Data/Record.html#method_remove"><abbr title="Simples\Data\Record">Record</abbr>::remove</a>() — <em>Method in class <a href="Simples/Data/Record.html"><abbr title="Simples\Data\Record">Record</abbr></a></em></dt>
<dd>Remove a key and associated value of the Record</dd><dt><a href="Simples/Data/Resources/IteratorTrait.html#method_rewind"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr>::rewind</a>() — <em>Method in class <a href="Simples/Data/Resources/IteratorTrait.html"><abbr title="Simples\Data\Resources\IteratorTrait">IteratorTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/ManipulationTrait.html#method_reduce"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr>::reduce</a>() — <em>Method in class <a href="Simples/Data/Resources/ManipulationTrait.html"><abbr title="Simples\Data\Resources\ManipulationTrait">ManipulationTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/RecordsTrait.html"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr></a> — <em>Class in namespace <a href="Simples/Data/Resources.html">Simples\Data\Resources</a></em></dt>
<dd>Trait CollectionRecords</dd><dt>$<a href="Simples/Data/Resources/RecordsTrait.html#property_records"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr>#records</a> — <em>Property in class <a href="Simples/Data/Resources/RecordsTrait.html"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Resources/RecordsTrait.html#method_records"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr>::records</a>() — <em>Method in class <a href="Simples/Data/Resources/RecordsTrait.html"><abbr title="Simples\Data\Resources\RecordsTrait">RecordsTrait</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validation.html#method_rules"><abbr title="Simples\Data\Validation">Validation</abbr>::rules</a>() — <em>Method in class <a href="Simples/Data/Validation.html"><abbr title="Simples\Data\Validation">Validation</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Validator.html#method_rule"><abbr title="Simples\Data\Validator">Validator</abbr>::rule</a>() — <em>Method in class <a href="Simples/Data/Validator.html"><abbr title="Simples\Data\Validator">Validator</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Directory.html#method_remove"><abbr title="Simples\Helper\Directory">Directory</abbr>::remove</a>() — <em>Method in class <a href="Simples/Helper/Directory.html"><abbr title="Simples\Helper\Directory">Directory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Directory.html#method_rename"><abbr title="Simples\Helper\Directory">Directory</abbr>::rename</a>() — <em>Method in class <a href="Simples/Helper/Directory.html"><abbr title="Simples\Helper\Directory">Directory</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/File.html#method_read"><abbr title="Simples\Helper\File">File</abbr>::read</a>() — <em>Method in class <a href="Simples/Helper/File.html"><abbr title="Simples\Helper\File">File</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Text.html#method_replace"><abbr title="Simples\Helper\Text">Text</abbr>::replace</a>() — <em>Method in class <a href="Simples/Helper/Text.html"><abbr title="Simples\Helper\Text">Text</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Text.html#method_replacex"><abbr title="Simples\Helper\Text">Text</abbr>::replacex</a>() — <em>Method in class <a href="Simples/Helper/Text.html"><abbr title="Simples\Helper\Text">Text</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Helper/Text.html#method_replacement"><abbr title="Simples\Helper\Text">Text</abbr>::replacement</a>() — <em>Method in class <a href="Simples/Helper/Text.html"><abbr title="Simples\Helper\Text">Text</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Controller.html#method_request"><abbr title="Simples\Http\Controller">Controller</abbr>::request</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Controller.html#method_response"><abbr title="Simples\Http\Controller">Controller</abbr>::response</a>() — <em>Method in class <a href="Simples/Http/Controller.html"><abbr title="Simples\Http\Controller">Controller</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Kernel/App.html#method_request"><abbr title="Simples\Http\Kernel\App">App</abbr>::request</a>() — <em>Method in class <a href="Simples/Http/Kernel/App.html"><abbr title="Simples\Http\Kernel\App">App</abbr></a></em></dt>
<dd>Singleton to Request to keep only one instance for each request</dd><dt><a href="Simples/Http/Kernel/App.html#method_route"><abbr title="Simples\Http\Kernel\App">App</abbr>::route</a>() — <em>Method in class <a href="Simples/Http/Kernel/App.html"><abbr title="Simples\Http\Kernel\App">App</abbr></a></em></dt>
<dd>Simple helper to generate a valid route to resources of project</dd><dt><a href="Simples/Http/Kernel/App.html#method_response"><abbr title="Simples\Http\Kernel\App">App</abbr>::response</a>() — <em>Method in class <a href="Simples/Http/Kernel/App.html"><abbr title="Simples\Http\Kernel\App">App</abbr></a></em></dt>
<dd>Singleton to Response to keep only one instance for each request</dd><dt><a href="Simples/Http/Kernel/Http.html#method_routes"><abbr title="Simples\Http\Kernel\Http">Http</abbr>::routes</a>() — <em>Method in class <a href="Simples/Http/Kernel/Http.html"><abbr title="Simples\Http\Kernel\Http">Http</abbr></a></em></dt>
<dd>Load the routes of project</dd><dt><a href="Simples/Http/Request.html"><abbr title="Simples\Http\Request">Request</abbr></a> — <em>Class in namespace <a href="Simples/Http.html">Simples\Http</a></em></dt>
<dd>Class Request</dd><dt><a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a> — <em>Class in namespace <a href="Simples/Http.html">Simples\Http</a></em></dt>
<dd></dd><dt><a href="Simples/Http/Response.html#method_rss"><abbr title="Simples\Http\Response">Response</abbr>::rss</a>() — <em>Method in class <a href="Simples/Http/Response.html"><abbr title="Simples\Http\Response">Response</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/ResponseStream.html"><abbr title="Simples\Http\ResponseStream">ResponseStream</abbr></a> — <em>Class in namespace <a href="Simples/Http.html">Simples\Http</a></em></dt>
<dd>Class ResponseStream</dd><dt>$<a href="Simples/Http/Stream.html#property_resource"><abbr title="Simples\Http\Stream">Stream</abbr>#resource</a> — <em>Property in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Http/Stream.html#method_rewind"><abbr title="Simples\Http\Stream">Stream</abbr>::rewind</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Seek to the beginning of the stream.</dd><dt><a href="Simples/Http/Stream.html#method_read"><abbr title="Simples\Http\Stream">Stream</abbr>::read</a>() — <em>Method in class <a href="Simples/Http/Stream.html"><abbr title="Simples\Http\Stream">Stream</abbr></a></em></dt>
<dd>Read data from the stream.</dd><dt><a href="Simples/Kernel/Container.html#method_register"><abbr title="Simples\Kernel\Container">Container</abbr>::register</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Register a class or alias into the Container.</dd><dt><a href="Simples/Kernel/Container.html#method_resolveMethodParameters"><abbr title="Simples\Kernel\Container">Container</abbr>::resolveMethodParameters</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Generate a list of values to be used like parameters to one method</dd><dt><a href="Simples/Kernel/Container.html#method_resolveFunctionParameters"><abbr title="Simples\Kernel\Container">Container</abbr>::resolveFunctionParameters</a>() — <em>Method in class <a href="Simples/Kernel/Container.html"><abbr title="Simples\Kernel\Container">Container</abbr></a></em></dt>
<dd>Generate a list of values to be used like parameters to one function</dd><dt><a href="Simples/Message/Lang.html#method_replace"><abbr title="Simples\Message\Lang">Lang</abbr>::replace</a>() — <em>Method in class <a href="Simples/Message/Lang.html"><abbr title="Simples\Message\Lang">Lang</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Message/Lang.html#method_replacement"><abbr title="Simples\Message\Lang">Lang</abbr>::replacement</a>() — <em>Method in class <a href="Simples/Message/Lang.html"><abbr title="Simples\Message\Lang">Lang</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Message/Mail.html#property_replyToAddress"><abbr title="Simples\Message\Mail">Mail</abbr>#replyToAddress</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Message/Mail.html#property_replyToName"><abbr title="Simples\Message\Mail">Mail</abbr>#replyToName</a> — <em>Property in class <a href="Simples/Message/Mail.html"><abbr title="Simples\Message\Mail">Mail</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Driver.html#method_remove"><abbr title="Simples\Migration\Driver">Driver</abbr>::remove</a>() — <em>Method in class <a href="Simples/Migration/Driver.html"><abbr title="Simples\Migration\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Migrant.html#method_remove"><abbr title="Simples\Migration\Migrant">Migrant</abbr>::remove</a>() — <em>Method in class <a href="Simples/Migration/Migrant.html"><abbr title="Simples\Migration\Migrant">Migrant</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Migration/Revision.html"><abbr title="Simples\Migration\Revision">Revision</abbr></a> — <em>Class in namespace <a href="Simples/Migration.html">Simples\Migration</a></em></dt>
<dd>Class Revision</dd><dt><a href="Simples/Migration/SQL/MySQL.html#method_remove"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr>::remove</a>() — <em>Method in class <a href="Simples/Migration/SQL/MySQL.html"><abbr title="Simples\Migration\SQL\MySQL">MySQL</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/DataMapper.html#method_read"><abbr title="Simples\Model\DataMapper">DataMapper</abbr>::read</a>() — <em>Method in class <a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a></em></dt>
<dd>Read records with the filters informed</dd><dt><a href="Simples/Model/DataMapper.html#method_recycle"><abbr title="Simples\Model\DataMapper">DataMapper</abbr>::recycle</a>() — <em>Method in class <a href="Simples/Model/DataMapper.html"><abbr title="Simples\Model\DataMapper">DataMapper</abbr></a></em></dt>
<dd>Recycle a destroyed record</dd><dt><a href="Simples/Model/ModelAbstract.html#method_recycle"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr>::recycle</a>() — <em>Method in class <a href="Simples/Model/ModelAbstract.html"><abbr title="Simples\Model\ModelAbstract">ModelAbstract</abbr></a></em></dt>
<dd>Recycle a destroyed record</dd><dt><a href="Simples/Model/ModelContract.html#method_read"><abbr title="Simples\Model\ModelContract">ModelContract</abbr>::read</a>() — <em>Method in class <a href="Simples/Model/ModelContract.html"><abbr title="Simples\Model\ModelContract">ModelContract</abbr></a></em></dt>
<dd>Read records with the filters informed</dd><dt><a href="Simples/Model/Relation.html"><abbr title="Simples\Model\Relation">Relation</abbr></a> — <em>Class in namespace <a href="Simples/Model.html">Simples\Model</a></em></dt>
<dd>Class Relation</dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_read"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::read</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Repository/ModelRepository.html#method_recycle"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr>::recycle</a>() — <em>Method in class <a href="Simples/Model/Repository/ModelRepository.html"><abbr title="Simples\Model\Repository\ModelRepository">ModelRepository</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_resolveCalculated"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::resolveCalculated</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_resolveMutation"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::resolveMutation</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelParser.html#method_resolveValue"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr>::resolveValue</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelParser.html"><abbr title="Simples\Model\Resource\ModelParser">ModelParser</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Model/Resource/ModelPivot.html#method_recoverRelationships"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr>::recoverRelationships</a>() — <em>Method in class <a href="Simples/Model/Resource/ModelPivot.html"><abbr title="Simples\Model\Resource\ModelPivot">ModelPivot</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/Connection.html#property_resource"><abbr title="Simples\Persistence\Connection">Connection</abbr>#resource</a> — <em>Property in class <a href="Simples/Persistence/Connection.html"><abbr title="Simples\Persistence\Connection">Connection</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Driver.html#method_rollback"><abbr title="Simples\Persistence\Driver">Driver</abbr>::rollback</a>() — <em>Method in class <a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Driver.html#method_read"><abbr title="Simples\Persistence\Driver">Driver</abbr>::read</a>() — <em>Method in class <a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Driver.html#method_run"><abbr title="Simples\Persistence\Driver">Driver</abbr>::run</a>() — <em>Method in class <a href="Simples/Persistence/Driver.html"><abbr title="Simples\Persistence\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_register"><abbr title="Simples\Persistence\Engine">Engine</abbr>::register</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_recover"><abbr title="Simples\Persistence\Engine">Engine</abbr>::recover</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_remove"><abbr title="Simples\Persistence\Engine">Engine</abbr>::remove</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Engine.html#method_reset"><abbr title="Simples\Persistence\Engine">Engine</abbr>::reset</a>() — <em>Method in class <a href="Simples/Persistence/Engine.html"><abbr title="Simples\Persistence\Engine">Engine</abbr></a></em></dt>
<dd>Clear the clausules changes</dd><dt><a href="Simples/Persistence/Field.html#method_referencedBy"><abbr title="Simples\Persistence\Field">Field</abbr>::referencedBy</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_referencesTo"><abbr title="Simples\Persistence\Field">Field</abbr>::referencesTo</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_required"><abbr title="Simples\Persistence\Field">Field</abbr>::required</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_readonly"><abbr title="Simples\Persistence\Field">Field</abbr>::readonly</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_reject"><abbr title="Simples\Persistence\Field">Field</abbr>::reject</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_read"><abbr title="Simples\Persistence\Field">Field</abbr>::read</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Field.html#method_recover"><abbr title="Simples\Persistence\Field">Field</abbr>::recover</a>() — <em>Method in class <a href="Simples/Persistence/Field.html"><abbr title="Simples\Persistence\Field">Field</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/FieldAbstract.html#property_referenced"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>#referenced</a> — <em>Property in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Persistence/FieldAbstract.html#property_references"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr>#references</a> — <em>Property in class <a href="Simples/Persistence/FieldAbstract.html"><abbr title="Simples\Persistence\FieldAbstract">FieldAbstract</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Fusion.html#method_relation"><abbr title="Simples\Persistence\Fusion">Fusion</abbr>::relation</a>() — <em>Method in class <a href="Simples/Persistence/Fusion.html"><abbr title="Simples\Persistence\Fusion">Fusion</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/QueryBuilder.html#method_rollback"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr>::rollback</a>() — <em>Method in class <a href="Simples/Persistence/QueryBuilder.html"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/QueryBuilder.html#method_run"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr>::run</a>() — <em>Method in class <a href="Simples/Persistence/QueryBuilder.html"><abbr title="Simples\Persistence\QueryBuilder">QueryBuilder</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_rollback"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::rollback</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_read"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::read</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Driver.html#method_run"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr>::run</a>() — <em>Method in class <a href="Simples/Persistence/SQL/Driver.html"><abbr title="Simples\Persistence\SQL\Driver">Driver</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/SQL/Operations/Read.html"><abbr title="Simples\Persistence\SQL\Operations\Read">Read</abbr></a> — <em>Class in namespace <a href="Simples/Persistence/SQL/Operations.html">Simples\Persistence\SQL\Operations</a></em></dt>
<dd>Class Read</dd><dt><a href="Simples/Persistence/SQL/SolverColumn.html#method_render"><abbr title="Simples\Persistence\SQL\SolverColumn">SolverColumn</abbr>::render</a>() — <em>Method in class <a href="Simples/Persistence/SQL/SolverColumn.html"><abbr title="Simples\Persistence\SQL\SolverColumn">SolverColumn</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Transaction.html#method_recover"><abbr title="Simples\Persistence\Transaction">Transaction</abbr>::recover</a>() — <em>Method in class <a href="Simples/Persistence/Transaction.html"><abbr title="Simples\Persistence\Transaction">Transaction</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Transaction.html#method_register"><abbr title="Simples\Persistence\Transaction">Transaction</abbr>::register</a>() — <em>Method in class <a href="Simples/Persistence/Transaction.html"><abbr title="Simples\Persistence\Transaction">Transaction</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Persistence/Transaction.html#method_rollback"><abbr title="Simples\Persistence\Transaction">Transaction</abbr>::rollback</a>() — <em>Method in class <a href="Simples/Persistence/Transaction.html"><abbr title="Simples\Persistence\Transaction">Transaction</abbr></a></em></dt>
<dd></dd><dt>$<a href="Simples/Route/Base.html#property_routes"><abbr title="Simples\Route\Base">Base</abbr>#routes</a> — <em>Property in class <a href="Simples/Route/Base.html"><abbr title="Simples\Route\Base">Base</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Console/RouteService.html"><abbr title="Simples\Route\Console\RouteService">RouteService</abbr></a> — <em>Class in namespace <a href="Simples/Route/Console.html">Simples\Route\Console</a></em></dt>
<dd>Class RouteService</dd><dt><a href="Simples/Route/Engine.html#method_resolve"><abbr title="Simples\Route\Engine">Engine</abbr>::resolve</a>() — <em>Method in class <a href="Simples/Route/Engine.html"><abbr title="Simples\Route\Engine">Engine</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a> — <em>Class in namespace <a href="Simples/Route.html">Simples\Route</a></em></dt>
<dd>Class Router</dd><dt><a href="Simples/Route/Router.html#method_resource"><abbr title="Simples\Route\Router">Router</abbr>::resource</a>() — <em>Method in class <a href="Simples/Route/Router.html"><abbr title="Simples\Route\Router">Router</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Security/Auth.html#method_register"><abbr title="Simples\Security\Auth">Auth</abbr>::register</a>() — <em>Method in class <a href="Simples/Security/Auth.html"><abbr title="Simples\Security\Auth">Auth</abbr></a></em></dt>
<dd>Add an user to Auth Session</dd><dt><a href="Simples/Template/Mustache.html#method_resolveMustaches"><abbr title="Simples\Template\Mustache">Mustache</abbr>::resolveMustaches</a>() — <em>Method in class <a href="Simples/Template/Mustache.html"><abbr title="Simples\Template\Mustache">Mustache</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Template/View.html#method_render"><abbr title="Simples\Template\View">View</abbr>::render</a>() — <em>Method in class <a href="Simples/Template/View.html"><abbr title="Simples\Template\View">View</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/App.html#method_run"><abbr title="Simples\Test\App">App</abbr>::run</a>() — <em>Method in class <a href="Simples/Test/App.html"><abbr title="Simples\Test\App">App</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Http/Client.html#method_run"><abbr title="Simples\Test\Http\Client">Client</abbr>::run</a>() — <em>Method in class <a href="Simples/Test/Http/Client.html"><abbr title="Simples\Test\Http\Client">Client</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Assert.html#method_resolve"><abbr title="Simples\Test\Scope\Assert">Assert</abbr>::resolve</a>() — <em>Method in class <a href="Simples/Test/Scope/Assert.html"><abbr title="Simples\Test\Scope\Assert">Assert</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Environment.html#method_read"><abbr title="Simples\Test\Scope\Environment">Environment</abbr>::read</a>() — <em>Method in class <a href="Simples/Test/Scope/Environment.html"><abbr title="Simples\Test\Scope\Environment">Environment</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Test.html#method_raw"><abbr title="Simples\Test\Scope\Test">Test</abbr>::raw</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Test/Scope/Test.html#method_run"><abbr title="Simples\Test\Scope\Test">Test</abbr>::run</a>() — <em>Method in class <a href="Simples/Test/Scope/Test.html"><abbr title="Simples\Test\Scope\Test">Test</abbr></a></em></dt>
<dd></dd> </dl><h2 id="letterS">S</h2>
<dl id="index"><dt><a href="Simples/Console/Service.html"><abbr title="Simples\Console\Service">Service</abbr></a> — <em>Class in namespace <a href="Simples/Console.html">Simples\Console</a></em></dt>
<dd>Class Service</dd><dt><a href="Simples/Controller/ApiController.html#method_search"><abbr title="Simples\Controller\ApiController">ApiController</abbr>::search</a>() — <em>Method in class <a href="Simples/Controller/ApiController.html"><abbr title="Simples\Controller\ApiController">ApiController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Controller/QueryController.html#method_subQuery"><abbr title="Simples\Controller\QueryController">QueryController</abbr>::subQuery</a>() — <em>Method in class <a href="Simples/Controller/QueryController.html"><abbr title="Simples\Controller\QueryController">QueryController</abbr></a></em></dt>
<dd></dd><dt><a href="Simples/Data/Error/SimplesRecordReadonlyError.html"><abbr title="Simples\Data\Error\SimplesRecordReadonlyError">SimplesRecordReadonlyError</abbr></a> — <em>Class in namespace <a href="Simples/Data/Error.html">Simples\Data\Error</a></em></dt>
<dd>Class SimplesRecordReadonlyError</dd><dt>$<a href="Simples/Data/Error/SimplesRecordReadonlyError.html#property_status"><abbr title="Simples\Data\Error\SimplesRecordReadonlyError">SimplesRecordReadonlyError</abbr>#status</a> — <em>Property in class <a href="Simples/Data/Error/SimplesRecordReadonlyError.html"><abbr title="Simples\Data\Error\SimplesRecordReadonlyError">SimplesRecordReadonlyError</abbr></a></em></dt>