Skip to content

Commit

Permalink
Use real symbol in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Wirone committed Jan 23, 2024
1 parent 9efab8a commit a8c6c14
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Integration of fixers: class_keyword,fully_qualified_strict_types.
{"class_keyword": true, "fully_qualified_strict_types": {"import_symbols": true}}
--EXPECT--
<?php
use Foo\Bar\Thing;

echo Thing::class;
use PhpCsFixer\Fixer\FixerInterface;
echo FixerInterface::class;

--INPUT--
<?php

echo 'Foo\Bar\Thing';
echo 'PhpCsFixer\Fixer\FixerInterface';

0 comments on commit a8c6c14

Please sign in to comment.