summaryrefslogtreecommitdiff
path: root/vendor/nikic/php-parser/lib/PhpParser/Node/Expr/Cast/Unset_.php
blob: accda3e4ff786ce4fee15f2f23151a0feb813123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php declare(strict_types=1);

namespace PhpParser\Node\Expr\Cast;

use PhpParser\Node\Expr\Cast;

class Unset_ extends Cast
{
    public function getType() : string {
        return 'Expr_Cast_Unset';
    }
}