Skip to content

Commit

Permalink
Optimize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Oct 25, 2024
1 parent 8ae18b9 commit 5c13f7e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions files/parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
*/

use Phalcon\Volt\Compiler;
use Phalcon\Volt\Parser\Status;
use Phalcon\Volt\Scanner\State;
use Phalcon\Volt\Scanner\Token;

Expand All @@ -58,11 +59,11 @@ class phvolt_yyStackEntry

class phvolt_Parser
{
public \Phalcon\Volt\Parser\Status $status;
public Status $status;

protected array $output = [];

public function __construct(\Phalcon\Volt\Parser\Status $status)
public function __construct(Status $status)
{
$this->status = $status;
}
Expand Down

0 comments on commit 5c13f7e

Please sign in to comment.