File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,21 +22,21 @@ final class Helpers
22
22
public const PHP_IDENT = '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]* ' ;
23
23
24
24
25
- /** @deprecated use Nette\PhpGenerator\Dumper:: dump() */
25
+ /** @deprecated use (new Nette\PhpGenerator\Dumper)-> dump() */
26
26
public static function dump ($ var ): string
27
27
{
28
28
return (new Dumper )->dump ($ var );
29
29
}
30
30
31
31
32
- /** @deprecated use Nette\PhpGenerator\Dumper:: format() */
32
+ /** @deprecated use (new Nette\PhpGenerator\Dumper)-> format() */
33
33
public static function format (string $ statement , ...$ args ): string
34
34
{
35
35
return (new Dumper )->format ($ statement , ...$ args );
36
36
}
37
37
38
38
39
- /** @deprecated use Nette\PhpGenerator\Dumper:: format() */
39
+ /** @deprecated use (new Nette\PhpGenerator\Dumper)-> format() */
40
40
public static function formatArgs (string $ statement , array $ args ): string
41
41
{
42
42
return (new Dumper )->format ($ statement , ...$ args );
You can’t perform that action at this time.
0 commit comments