@@ -26,7 +26,7 @@ public function testValidCtypeAlnum($text)
26
26
$ this ->assertTrue (ctype_alnum ($ text ));
27
27
}
28
28
29
- public function provideValidAlnums ()
29
+ public static function provideValidAlnums ()
30
30
{
31
31
return [
32
32
['0 ' ],
@@ -49,7 +49,7 @@ public function testInvalidCtypeAlnum($text)
49
49
$ this ->assertFalse (ctype_alnum ($ text ));
50
50
}
51
51
52
- public function provideInvalidAlnum ()
52
+ public static function provideInvalidAlnum ()
53
53
{
54
54
return [
55
55
[[]],
@@ -81,7 +81,7 @@ public function testValidCtypeAlpha($text)
81
81
$ this ->assertTrue (ctype_alpha ($ text ));
82
82
}
83
83
84
- public function provideValidAlphas ()
84
+ public static function provideValidAlphas ()
85
85
{
86
86
return [
87
87
[65 ],
@@ -100,7 +100,7 @@ public function testInvalidCtypeAlpha($text)
100
100
$ this ->assertFalse (ctype_alpha ($ text ));
101
101
}
102
102
103
- public function provideInvalidAlpha ()
103
+ public static function provideInvalidAlpha ()
104
104
{
105
105
return [
106
106
[[]],
@@ -132,7 +132,7 @@ public function testValidCtypeCntrl($text)
132
132
$ this ->assertTrue (ctype_cntrl ($ text ));
133
133
}
134
134
135
- public function provideValidCntrls ()
135
+ public static function provideValidCntrls ()
136
136
{
137
137
return [
138
138
[8 ],
@@ -151,7 +151,7 @@ public function testInvalidCtypeCntrl($text)
151
151
$ this ->assertFalse (ctype_cntrl ($ text ));
152
152
}
153
153
154
- public function provideInvalidCntrl ()
154
+ public static function provideInvalidCntrl ()
155
155
{
156
156
return [
157
157
[[]],
@@ -185,7 +185,7 @@ public function testValidCtypeDigit($text)
185
185
$ this ->assertTrue (ctype_digit ($ text ));
186
186
}
187
187
188
- public function provideValidDigits ()
188
+ public static function provideValidDigits ()
189
189
{
190
190
return [
191
191
['0 ' ],
@@ -205,7 +205,7 @@ public function testInvalidCtypeDigit($text)
205
205
$ this ->assertFalse (ctype_digit ($ text ));
206
206
}
207
207
208
- public function provideInvalidDigit ()
208
+ public static function provideInvalidDigit ()
209
209
{
210
210
return [
211
211
[[]],
@@ -240,7 +240,7 @@ public function testValidCtypeGraph($text)
240
240
$ this ->assertTrue (ctype_graph ($ text ));
241
241
}
242
242
243
- public function provideValidGraphs ()
243
+ public static function provideValidGraphs ()
244
244
{
245
245
return [
246
246
[-129 ],
@@ -267,7 +267,7 @@ public function testInvalidCtypeGraph($text)
267
267
$ this ->assertFalse (ctype_graph ($ text ));
268
268
}
269
269
270
- public function provideInvalidGraph ()
270
+ public static function provideInvalidGraph ()
271
271
{
272
272
return [
273
273
[[]],
@@ -294,7 +294,7 @@ public function testValidCtypeLower($text)
294
294
$ this ->assertTrue (ctype_lower ($ text ));
295
295
}
296
296
297
- public function provideValidLowers ()
297
+ public static function provideValidLowers ()
298
298
{
299
299
return [
300
300
[98 ],
@@ -311,7 +311,7 @@ public function testInvalidCtypeLower($text)
311
311
$ this ->assertFalse (ctype_lower ($ text ));
312
312
}
313
313
314
- public function provideInvalidLower ()
314
+ public static function provideInvalidLower ()
315
315
{
316
316
return [
317
317
[[]],
@@ -342,7 +342,7 @@ public function testValidCtypePrint($text)
342
342
$ this ->assertTrue (ctype_print ($ text ));
343
343
}
344
344
345
- public function provideValidPrints ()
345
+ public static function provideValidPrints ()
346
346
{
347
347
return [
348
348
[-129 ],
@@ -368,7 +368,7 @@ public function testInvalidCtypePrint($text)
368
368
$ this ->assertFalse (ctype_print ($ text ));
369
369
}
370
370
371
- public function provideInvalidPrint ()
371
+ public static function provideInvalidPrint ()
372
372
{
373
373
return [
374
374
[[]],
@@ -393,7 +393,7 @@ public function testValidCtypePunct($text)
393
393
$ this ->assertTrue (ctype_punct ($ text ));
394
394
}
395
395
396
- public function provideValidPuncts ()
396
+ public static function provideValidPuncts ()
397
397
{
398
398
return [
399
399
[43 ],
@@ -410,7 +410,7 @@ public function testInvalidCtypePunct($text)
410
410
$ this ->assertFalse (ctype_punct ($ text ));
411
411
}
412
412
413
- public function provideInvalidPunct ()
413
+ public static function provideInvalidPunct ()
414
414
{
415
415
return [
416
416
[[]],
@@ -445,7 +445,7 @@ public function testValidCtypeSpace($text)
445
445
$ this ->assertTrue (ctype_space ($ text ));
446
446
}
447
447
448
- public function provideValidSpaces ()
448
+ public static function provideValidSpaces ()
449
449
{
450
450
return [
451
451
[32 ],
@@ -465,7 +465,7 @@ public function testInvalidCtypeSpace($text)
465
465
$ this ->assertFalse (ctype_space ($ text ));
466
466
}
467
467
468
- public function provideInvalidSpace ()
468
+ public static function provideInvalidSpace ()
469
469
{
470
470
return [
471
471
[[]],
@@ -499,7 +499,7 @@ public function testValidCtypeUpper($text)
499
499
$ this ->assertTrue (ctype_upper ($ text ));
500
500
}
501
501
502
- public function provideValidUppers ()
502
+ public static function provideValidUppers ()
503
503
{
504
504
return [
505
505
[65 ],
@@ -517,7 +517,7 @@ public function testInvalidCtypeUpper($text)
517
517
$ this ->assertFalse (ctype_upper ($ text ));
518
518
}
519
519
520
- public function provideInvalidUpper ()
520
+ public static function provideInvalidUpper ()
521
521
{
522
522
return [
523
523
[[]],
@@ -557,7 +557,7 @@ public function testValidCtypeXdigit($text)
557
557
$ this ->assertTrue (ctype_xdigit ($ text ));
558
558
}
559
559
560
- public function provideValidXdigits ()
560
+ public static function provideValidXdigits ()
561
561
{
562
562
return [
563
563
['0 ' ],
@@ -583,7 +583,7 @@ public function testInvalidCtypeXdigit($text)
583
583
$ this ->assertFalse (ctype_xdigit ($ text ));
584
584
}
585
585
586
- public function provideInvalidXdigit ()
586
+ public static function provideInvalidXdigit ()
587
587
{
588
588
return [
589
589
[[]],
0 commit comments