Skip to content

Commit e06b5a1

Browse files
committed
Remove FQCN type hints on properties
1 parent c4f851b commit e06b5a1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Data/Bundle/Reader/BufferedBundleReader.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
*/
2121
class BufferedBundleReader implements BundleReaderInterface
2222
{
23-
private BundleReaderInterface $reader;
23+
private $reader;
2424
/** @var RingBuffer<string, mixed> */
25-
private RingBuffer $buffer;
25+
private $buffer;
2626

2727
public function __construct(BundleReaderInterface $reader, int $bufferSize)
2828
{

Data/Bundle/Reader/BundleEntryReader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
*/
2929
class BundleEntryReader implements BundleEntryReaderInterface
3030
{
31-
private BundleReaderInterface $reader;
31+
private $reader;
3232

3333
/**
3434
* A mapping of locale aliases to locales.

Data/Generator/AbstractDataGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*/
2828
abstract class AbstractDataGenerator
2929
{
30-
private BundleCompilerInterface $compiler;
30+
private $compiler;
3131
private string $dirName;
3232

3333
public function __construct(BundleCompilerInterface $compiler, string $dirName)

Data/Util/ArrayAccessibleResourceBundle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*/
2626
class ArrayAccessibleResourceBundle implements \ArrayAccess, \IteratorAggregate, \Countable
2727
{
28-
private \ResourceBundle $bundleImpl;
28+
private $bundleImpl;
2929

3030
public function __construct(\ResourceBundle $bundleImpl)
3131
{

0 commit comments

Comments
 (0)