You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `toHaveSuspiciousCharacters()` method may be used to help you identify potential suspicious characters in your code.
466
+
467
+
```php
468
+
arch('app')
469
+
->expect('App\Http\Controllers')
470
+
->not->toHaveSuspiciousCharacters();
471
+
```
472
+
473
+
This expectation requires the `intl` PHP extension.
474
+
461
475
<aname="expect-toHaveConstructor"></a>
462
476
### `toHaveConstructor()`
463
477
@@ -619,7 +633,9 @@ It avoids the usage of `die`, `var_dump`, and similar functions, and ensures you
619
633
arch()->preset()->php();
620
634
```
621
635
622
-
You may find all the expectations included in the `php` preset below in our [source code](https://github.com/pestphp/pest/blob/3.x/src/ArchPresets/Php.php).
636
+
You may find all the expectations included in the `php` preset below in our [source code](https://github.com/pestphp/pest/blob/4.x/src/ArchPresets/Php.php).
0 commit comments