-
Notifications
You must be signed in to change notification settings - Fork 7
/
Core.php
2544 lines (2298 loc) · 75.7 KB
/
Core.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// Start of Core v.7.0.4-7ubuntu2
class stdClass {
}
/**
* Interface to detect if a class is traversable using foreach.
* @link http://php.net/manual/en/class.traversable.php
*/
interface Traversable {
}
/**
* Interface to create an external Iterator.
* @link http://php.net/manual/en/class.iteratoraggregate.php
*/
interface IteratorAggregate extends Traversable {
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Retrieve an external iterator
* @link http://php.net/manual/en/iteratoraggregate.getiterator.php
* @return Traversable An instance of an object implementing <b>Iterator</b> or
* <b>Traversable</b>
*/
abstract public function getIterator(): Traversable;
}
/**
* Interface for external iterators or objects that can be iterated
* themselves internally.
* @link http://php.net/manual/en/class.iterator.php
*/
interface Iterator extends Traversable {
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Return the current element
* @link http://php.net/manual/en/iterator.current.php
* @return mixed Can return any type.
*/
abstract public function current();
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Move forward to next element
* @link http://php.net/manual/en/iterator.next.php
* @return void Any returned value is ignored.
*/
abstract public function next();
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Return the key of the current element
* @link http://php.net/manual/en/iterator.key.php
* @return scalar scalar on success, or <b>NULL</b> on failure.
*/
abstract public function key();
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Checks if current position is valid
* @link http://php.net/manual/en/iterator.valid.php
* @return boolean The return value will be casted to boolean and then evaluated.
* Returns <b>TRUE</b> on success or <b>FALSE</b> on failure.
*/
abstract public function valid(): bool;
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Rewind the Iterator to the first element
* @link http://php.net/manual/en/iterator.rewind.php
* @return void Any returned value is ignored.
*/
abstract public function rewind();
}
/**
* Interface to provide accessing objects as arrays.
* @link http://php.net/manual/en/class.arrayaccess.php
*/
interface ArrayAccess {
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Whether an offset exists
* @link http://php.net/manual/en/arrayaccess.offsetexists.php
* @param mixed $offset <p>
* An offset to check for.
* </p>
* @return boolean <b>TRUE</b> on success or <b>FALSE</b> on failure.
* </p>
* <p>
* The return value will be casted to boolean if non-boolean was returned.
*/
abstract public function offsetExists($offset): bool;
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Offset to retrieve
* @link http://php.net/manual/en/arrayaccess.offsetget.php
* @param mixed $offset <p>
* The offset to retrieve.
* </p>
* @return mixed Can return all value types.
*/
abstract public function offsetGet($offset);
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Assign a value to the specified offset
* @link http://php.net/manual/en/arrayaccess.offsetset.php
* @param mixed $offset <p>
* The offset to assign the value to.
* </p>
* @param mixed $value <p>
* The value to set.
* </p>
* @return void No value is returned.
*/
abstract public function offsetSet($offset, $value);
/**
* (PHP 5 >= 5.0.0, PHP 7)<br/>
* Unset an offset
* @link http://php.net/manual/en/arrayaccess.offsetunset.php
* @param mixed $offset <p>
* The offset to unset.
* </p>
* @return void No value is returned.
*/
abstract public function offsetUnset($offset);
}
/**
* Interface for customized serializing.
* @link http://php.net/manual/en/class.serializable.php
*/
interface Serializable {
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* String representation of object
* @link http://php.net/manual/en/serializable.serialize.php
* @return string the string representation of the object or <b>NULL</b>
*/
abstract public function serialize(): string;
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Constructs the object
* @link http://php.net/manual/en/serializable.unserialize.php
* @param string $serialized <p>
* The string representation of the object.
* </p>
* @return void The return value from this method is ignored.
*/
abstract public function unserialize(string $serialized);
}
/**
* <b>Throwable</b> is the base interface for any object that
* can be thrown via a throw statement in PHP 7, including
* <b>Error</b> and <b>Exception</b>.
* @link http://php.net/manual/en/class.throwable.php
*/
interface Throwable {
/**
* (PHP 7)<br/>
* Gets the message
* @link http://php.net/manual/en/throwable.getmessage.php
* @return string the message associated with the thrown object.
*/
abstract public function getMessage(): string;
/**
* (PHP 7)<br/>
* Gets the exception code
* @link http://php.net/manual/en/throwable.getcode.php
* @return int the exception code as integer in
* <b>Exception</b> but possibly as other type in
* <b>Exception</b> descendants (for example as
* string in <b>PDOException</b>).
*/
abstract public function getCode(): int;
/**
* (PHP 7)<br/>
* Gets the file in which the exception occurred
* @link http://php.net/manual/en/throwable.getfile.php
* @return string the name of the file from which the object was thrown.
*/
abstract public function getFile(): string;
/**
* (PHP 7)<br/>
* Gets the line on which the object was instantiated
* @link http://php.net/manual/en/throwable.getline.php
* @return int the line number where the thrown object was instantiated.
*/
abstract public function getLine(): int;
/**
* (PHP 7)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/throwable.gettrace.php
* @return array the stack trace as an array in the same format as
* <b>debug_backtrace</b>.
*/
abstract public function getTrace(): array;
/**
* (PHP 7)<br/>
* Returns the previous Throwable
* @link http://php.net/manual/en/throwable.getprevious.php
* @return Throwable the previous <b>Throwable</b> if available, or
* <b>NULL</b> otherwise.
*/
abstract public function getPrevious(): Throwable;
/**
* (PHP 7)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/throwable.gettraceasstring.php
* @return string the stack trace as a string.
*/
abstract public function getTraceAsString(): string;
/**
* (PHP 7)<br/>
* Gets a string representation of the thrown object
* @link http://php.net/manual/en/throwable.tostring.php
* @return string the string representation of the thrown object.
*/
abstract public function __toString(): string;
}
/**
* <b>Exception</b> is the base class for
* all Exceptions in PHP 5, and the base class for all user exceptions in PHP
* 7.
* @link http://php.net/manual/en/class.exception.php
*/
class Exception implements Throwable {
protected $message;
private $string;
protected $code;
protected $file;
protected $line;
private $trace;
private $previous;
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Clone the exception
* @link http://php.net/manual/en/exception.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Construct the exception
* @link http://php.net/manual/en/exception.construct.php
* @param string $message [optional] <p>
* The Exception message to throw.
* </p>
* @param int $code [optional] <p>
* The Exception code.
* </p>
* @param Throwable $previous [optional] <p>
* The previous exception used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null) {}
public function __wakeup() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the Exception message
* @link http://php.net/manual/en/exception.getmessage.php
* @return string the Exception message as a string.
*/
final public function getMessage(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the Exception code
* @link http://php.net/manual/en/exception.getcode.php
* @return mixed the exception code as integer in
* <b>Exception</b> but possibly as other type in
* <b>Exception</b> descendants (for example as
* string in <b>PDOException</b>).
*/
final public function getCode() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the file in which the exception occurred
* @link http://php.net/manual/en/exception.getfile.php
* @return string the filename in which the exception was created.
*/
final public function getFile(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the line in which the exception occurred
* @link http://php.net/manual/en/exception.getline.php
* @return int the line number where the exception was created.
*/
final public function getLine(): int {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/exception.gettrace.php
* @return array the Exception stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Returns previous Exception
* @link http://php.net/manual/en/exception.getprevious.php
* @return Exception the previous <b>Exception</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Exception {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/exception.gettraceasstring.php
* @return string the Exception stack trace as a string.
*/
final public function getTraceAsString(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* String representation of the exception
* @link http://php.net/manual/en/exception.tostring.php
* @return string the string representation of the exception.
*/
public function __toString(): string {}
}
/**
* An Error Exception.
* @link http://php.net/manual/en/class.errorexception.php
*/
class ErrorException extends Exception implements Throwable {
protected $message;
protected $code;
protected $file;
protected $line;
protected $severity;
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Constructs the exception
* @link http://php.net/manual/en/errorexception.construct.php
* @param string $message [optional] <p>
* The Exception message to throw.
* </p>
* @param int $code [optional] <p>
* The Exception code.
* </p>
* @param int $severity [optional] <p>
* The severity level of the exception.
* </p>
* @param string $filename [optional] <p>
* The filename where the exception is thrown.
* </p>
* @param int $lineno [optional] <p>
* The line number where the exception is thrown.
* </p>
* @param Exception $previous [optional] <p>
* The previous exception used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, int $severity = 1, string $filename = __FILE__, int $lineno = __LINE__, Exception $previous = null) {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the exception severity
* @link http://php.net/manual/en/errorexception.getseverity.php
* @return int the severity level of the exception.
*/
final public function getSeverity(): int {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Clone the exception
* @link http://php.net/manual/en/exception.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
public function __wakeup() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the Exception message
* @link http://php.net/manual/en/exception.getmessage.php
* @return string the Exception message as a string.
*/
final public function getMessage(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the Exception code
* @link http://php.net/manual/en/exception.getcode.php
* @return mixed the exception code as integer in
* <b>Exception</b> but possibly as other type in
* <b>Exception</b> descendants (for example as
* string in <b>PDOException</b>).
*/
final public function getCode() {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the file in which the exception occurred
* @link http://php.net/manual/en/exception.getfile.php
* @return string the filename in which the exception was created.
*/
final public function getFile(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the line in which the exception occurred
* @link http://php.net/manual/en/exception.getline.php
* @return int the line number where the exception was created.
*/
final public function getLine(): int {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/exception.gettrace.php
* @return array the Exception stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (PHP 5 >= 5.3.0, PHP 7)<br/>
* Returns previous Exception
* @link http://php.net/manual/en/exception.getprevious.php
* @return Exception the previous <b>Exception</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Exception {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/exception.gettraceasstring.php
* @return string the Exception stack trace as a string.
*/
final public function getTraceAsString(): string {}
/**
* (PHP 5 >= 5.1.0, PHP 7)<br/>
* String representation of the exception
* @link http://php.net/manual/en/exception.tostring.php
* @return string the string representation of the exception.
*/
public function __toString(): string {}
}
/**
* <b>Error</b> is the base class for all
* internal PHP errors.
* @link http://php.net/manual/en/class.error.php
*/
class Error implements Throwable {
protected $message;
private $string;
protected $code;
protected $file;
protected $line;
private $trace;
private $previous;
/**
* (No version information available, might only be in Git)<br/>
* Clone the error
* @link http://php.net/manual/en/error.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
/**
* (No version information available, might only be in Git)<br/>
* Construct the error object
* @link http://php.net/manual/en/error.construct.php
* @param string $message [optional] <p>
* The error message.
* </p>
* @param int $code [optional] <p>
* The error code.
* </p>
* @param Throwable $previous [optional] <p>
* The previous throwable used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null) {}
public function __wakeup() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error message
* @link http://php.net/manual/en/error.getmessage.php
* @return string the error message as a string.
*/
final public function getMessage(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error code
* @link http://php.net/manual/en/error.getcode.php
* @return mixed the error code as integer
*/
final public function getCode() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the file in which the error occurred
* @link http://php.net/manual/en/error.getfile.php
* @return string the filename in which the error occurred.
*/
final public function getFile(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the line in which the error occurred
* @link http://php.net/manual/en/error.getline.php
* @return int the line number where the error occurred.
*/
final public function getLine(): int {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/error.gettrace.php
* @return array the stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (No version information available, might only be in Git)<br/>
* Returns previous Throwable
* @link http://php.net/manual/en/error.getprevious.php
* @return Throwable the previous <b>Throwable</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Throwable {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/error.gettraceasstring.php
* @return string the stack trace as a string.
*/
final public function getTraceAsString(): string {}
/**
* (No version information available, might only be in Git)<br/>
* String representation of the error
* @link http://php.net/manual/en/error.tostring.php
* @return string the string representation of the error.
*/
public function __toString(): string {}
}
/**
* <b>ParseError</b> is thrown when an
* error occurs while parsing PHP code, such as when
* <b>eval</b> is called.
* @link http://php.net/manual/en/class.parseerror.php
*/
class ParseError extends Error implements Throwable {
protected $message;
protected $code;
protected $file;
protected $line;
/**
* (No version information available, might only be in Git)<br/>
* Clone the error
* @link http://php.net/manual/en/error.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
/**
* (No version information available, might only be in Git)<br/>
* Construct the error object
* @link http://php.net/manual/en/error.construct.php
* @param string $message [optional] <p>
* The error message.
* </p>
* @param int $code [optional] <p>
* The error code.
* </p>
* @param Throwable $previous [optional] <p>
* The previous throwable used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null) {}
public function __wakeup() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error message
* @link http://php.net/manual/en/error.getmessage.php
* @return string the error message as a string.
*/
final public function getMessage(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error code
* @link http://php.net/manual/en/error.getcode.php
* @return mixed the error code as integer
*/
final public function getCode() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the file in which the error occurred
* @link http://php.net/manual/en/error.getfile.php
* @return string the filename in which the error occurred.
*/
final public function getFile(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the line in which the error occurred
* @link http://php.net/manual/en/error.getline.php
* @return int the line number where the error occurred.
*/
final public function getLine(): int {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/error.gettrace.php
* @return array the stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (No version information available, might only be in Git)<br/>
* Returns previous Throwable
* @link http://php.net/manual/en/error.getprevious.php
* @return Throwable the previous <b>Throwable</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Throwable {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/error.gettraceasstring.php
* @return string the stack trace as a string.
*/
final public function getTraceAsString(): string {}
/**
* (No version information available, might only be in Git)<br/>
* String representation of the error
* @link http://php.net/manual/en/error.tostring.php
* @return string the string representation of the error.
*/
public function __toString(): string {}
}
/**
* There are three scenarios where a
* <b>TypeError</b> may be thrown. The
* first is where the argument type being passed to a function does not match
* its corresponding declared parameter type. The second is where a value
* being returned from a function does not match the declared function return
* type. The third is where an invalid number of arguments are passed to a
* built-in PHP function (strict mode only).
* @link http://php.net/manual/en/class.typeerror.php
*/
class TypeError extends Error implements Throwable {
protected $message;
protected $code;
protected $file;
protected $line;
/**
* (No version information available, might only be in Git)<br/>
* Clone the error
* @link http://php.net/manual/en/error.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
/**
* (No version information available, might only be in Git)<br/>
* Construct the error object
* @link http://php.net/manual/en/error.construct.php
* @param string $message [optional] <p>
* The error message.
* </p>
* @param int $code [optional] <p>
* The error code.
* </p>
* @param Throwable $previous [optional] <p>
* The previous throwable used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null) {}
public function __wakeup() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error message
* @link http://php.net/manual/en/error.getmessage.php
* @return string the error message as a string.
*/
final public function getMessage(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error code
* @link http://php.net/manual/en/error.getcode.php
* @return mixed the error code as integer
*/
final public function getCode() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the file in which the error occurred
* @link http://php.net/manual/en/error.getfile.php
* @return string the filename in which the error occurred.
*/
final public function getFile(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the line in which the error occurred
* @link http://php.net/manual/en/error.getline.php
* @return int the line number where the error occurred.
*/
final public function getLine(): int {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/error.gettrace.php
* @return array the stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (No version information available, might only be in Git)<br/>
* Returns previous Throwable
* @link http://php.net/manual/en/error.getprevious.php
* @return Throwable the previous <b>Throwable</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Throwable {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/error.gettraceasstring.php
* @return string the stack trace as a string.
*/
final public function getTraceAsString(): string {}
/**
* (No version information available, might only be in Git)<br/>
* String representation of the error
* @link http://php.net/manual/en/error.tostring.php
* @return string the string representation of the error.
*/
public function __toString(): string {}
}
/**
* <b>ArithmeticError</b> is thrown when
* an error occurs while performing mathematical operations. In PHP 7.0,
* these errors include attempting to perform a bitshift by a negative
* amount, and any call to <b>intdiv</b> that would result in a
* value outside the possible bounds of an integer.
* @link http://php.net/manual/en/class.arithmeticerror.php
*/
class ArithmeticError extends Error implements Throwable {
protected $message;
protected $code;
protected $file;
protected $line;
/**
* (No version information available, might only be in Git)<br/>
* Clone the error
* @link http://php.net/manual/en/error.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
/**
* (No version information available, might only be in Git)<br/>
* Construct the error object
* @link http://php.net/manual/en/error.construct.php
* @param string $message [optional] <p>
* The error message.
* </p>
* @param int $code [optional] <p>
* The error code.
* </p>
* @param Throwable $previous [optional] <p>
* The previous throwable used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null) {}
public function __wakeup() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error message
* @link http://php.net/manual/en/error.getmessage.php
* @return string the error message as a string.
*/
final public function getMessage(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error code
* @link http://php.net/manual/en/error.getcode.php
* @return mixed the error code as integer
*/
final public function getCode() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the file in which the error occurred
* @link http://php.net/manual/en/error.getfile.php
* @return string the filename in which the error occurred.
*/
final public function getFile(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the line in which the error occurred
* @link http://php.net/manual/en/error.getline.php
* @return int the line number where the error occurred.
*/
final public function getLine(): int {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/error.gettrace.php
* @return array the stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (No version information available, might only be in Git)<br/>
* Returns previous Throwable
* @link http://php.net/manual/en/error.getprevious.php
* @return Throwable the previous <b>Throwable</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Throwable {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace as a string
* @link http://php.net/manual/en/error.gettraceasstring.php
* @return string the stack trace as a string.
*/
final public function getTraceAsString(): string {}
/**
* (No version information available, might only be in Git)<br/>
* String representation of the error
* @link http://php.net/manual/en/error.tostring.php
* @return string the string representation of the error.
*/
public function __toString(): string {}
}
/**
* <b>DivisionByZeroError</b> is thrown
* when an attempt is made to divide a number by zero.
* @link http://php.net/manual/en/class.divisionbyzeroerror.php
*/
class DivisionByZeroError extends ArithmeticError implements Throwable {
protected $message;
protected $code;
protected $file;
protected $line;
/**
* (No version information available, might only be in Git)<br/>
* Clone the error
* @link http://php.net/manual/en/error.clone.php
* @return void No value is returned.
*/
final private function __clone() {}
/**
* (No version information available, might only be in Git)<br/>
* Construct the error object
* @link http://php.net/manual/en/error.construct.php
* @param string $message [optional] <p>
* The error message.
* </p>
* @param int $code [optional] <p>
* The error code.
* </p>
* @param Throwable $previous [optional] <p>
* The previous throwable used for the exception chaining.
* </p>
*/
public function __construct(string $message = "", int $code = 0, Throwable $previous = null) {}
public function __wakeup() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error message
* @link http://php.net/manual/en/error.getmessage.php
* @return string the error message as a string.
*/
final public function getMessage(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the error code
* @link http://php.net/manual/en/error.getcode.php
* @return mixed the error code as integer
*/
final public function getCode() {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the file in which the error occurred
* @link http://php.net/manual/en/error.getfile.php
* @return string the filename in which the error occurred.
*/
final public function getFile(): string {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the line in which the error occurred
* @link http://php.net/manual/en/error.getline.php
* @return int the line number where the error occurred.
*/
final public function getLine(): int {}
/**
* (No version information available, might only be in Git)<br/>
* Gets the stack trace
* @link http://php.net/manual/en/error.gettrace.php
* @return array the stack trace as an array.
*/
final public function getTrace(): array {}
/**
* (No version information available, might only be in Git)<br/>
* Returns previous Throwable
* @link http://php.net/manual/en/error.getprevious.php
* @return Throwable the previous <b>Throwable</b> if available
* or <b>NULL</b> otherwise.
*/
final public function getPrevious(): Throwable {}