noverify
noverify copied to clipboard
Inspection: replace `gettype($v) === "type"` with `is_type($v)`
Before
if (gettype($v) === "string")
After:
if (is_string($v))