Skip to content

Commit

Permalink
refactor: do not use deprecated Safe fncs (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
simPod committed Jun 15, 2022
1 parent b8f68e8 commit 552d30b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Exception/InvalidArgument.php
Expand Up @@ -10,7 +10,7 @@
use SimPod\GraphQLUtils\Builder\TypeBuilder;
use Throwable;

use function Safe\sprintf;
use function sprintf;

final class InvalidArgument extends Exception implements ClientAware
{
Expand Down
2 changes: 1 addition & 1 deletion src/Type/DateTimeType.php
Expand Up @@ -18,8 +18,8 @@
use function explode;
use function is_string;
use function Safe\preg_match;
use function Safe\substr;
use function strpos;
use function substr;

class DateTimeType extends CustomScalarType
{
Expand Down

0 comments on commit 552d30b

Please sign in to comment.