Skip to content

Commit 00383f6

Browse files
CS fixes
1 parent 5c24da0 commit 00383f6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

Attribute/ValueTransformer.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@
1212
namespace Symfony\Component\JsonStreamer\Attribute;
1313

1414
use Symfony\Component\JsonStreamer\Exception\LogicException;
15+
use Symfony\Component\JsonStreamer\ValueTransformer\ValueTransformerInterface;
1516

1617
/**
17-
* Defines a callable or a {@see \Symfony\Component\JsonStreamer\ValueTransformer\ValueTransformerInterface} service id
18+
* Defines a callable or a {@see ValueTransformerInterface} service id
1819
* that will be used to transform the property data during stream reading/writing.
1920
*
2021
* @author Mathias Arlaud <mathias.arlaud@gmail.com>

CacheWarmer/LazyGhostCacheWarmer.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
use Symfony\Component\Filesystem\Filesystem;
1515
use Symfony\Component\HttpKernel\CacheWarmer\CacheWarmer;
1616
use Symfony\Component\JsonStreamer\Exception\RuntimeException;
17+
use Symfony\Component\VarExporter\LazyGhostTrait;
1718
use Symfony\Component\VarExporter\ProxyHelper;
1819

1920
/**
20-
* Generates lazy ghost {@see \Symfony\Component\VarExporter\LazyGhostTrait}
21+
* Generates lazy ghost {@see LazyGhostTrait}
2122
* PHP files for $streamable types.
2223
*
2324
* @author Mathias Arlaud <mathias.arlaud@gmail.com>

Read/LazyInstantiator.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@
1414
use Symfony\Component\Filesystem\Filesystem;
1515
use Symfony\Component\JsonStreamer\Exception\InvalidArgumentException;
1616
use Symfony\Component\JsonStreamer\Exception\RuntimeException;
17+
use Symfony\Component\VarExporter\LazyGhostTrait;
1718
use Symfony\Component\VarExporter\ProxyHelper;
1819

1920
/**
20-
* Instantiates a new $className lazy ghost {@see \Symfony\Component\VarExporter\LazyGhostTrait}.
21+
* Instantiates a new $className lazy ghost {@see LazyGhostTrait}.
2122
*
2223
* Prior to PHP 8.4, the "$className" argument class must not be final.
2324
* The $initializer must be a callable that sets the actual object values when being called.

0 commit comments

Comments
 (0)