Skip to content

Commit b995ac6

Browse files
authored
Add debugger function
Fixes phpstan/phpstan#3765
1 parent 14946a8 commit b995ac6

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/Debugger.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php declare(strict_types = 1);
2+
3+
namespace PHPStan;
4+
5+
class Debugger
6+
{
7+
/**
8+
* @var mixed $thing
9+
*/
10+
public function logType($thing)
11+
{
12+
//
13+
}
14+
}

0 commit comments

Comments
 (0)