8000 minor #12413 Remove aligned '=>' and '=' (disquedur) · symfony/symfony@f1c34f9 · GitHub
[go: up one dir, main page]

Skip to content

Commit f1c34f9

Browse files
committed
minor #12413 Remove aligned '=>' and '=' (disquedur)
This PR was merged into the 2.6-dev branch. Discussion ---------- Remove aligned '=>' and '=' | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | [#12284] | License | MIT PR for 2.3 branch : #12293 PR for 2.5 branch : #12362 Commits ------- ac1f2b7 Remove aligned '=>' and '='
2 parents 604fefc + ac1f2b7 commit f1c34f9

File tree

18 files changed

+128
-130
lines changed

18 files changed

+128
-130
lines changed

src/Symfony/Bridge/Doctrine/DependencyInjection/AbstractDoctrineExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ protected function fixManagersAutoMappings(array $managerConfigs, array $bundles
413413
}
414414
}
415415
$managerConfigs[$autoMappedManager]['mappings'][$bundle] = array(
416-
'mapping' => true,
416+
'mapping' => true,
417417
'is_bundle' => true,
418418
);
419419
}

src/Symfony/Bridge/Doctrine/Form/Type/DoctrineType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public function setDefaultOptions(OptionsResolverInterface $resolver)
180180
));
181181

182182
$resolver->setAllowedTypes(array(
183-
'em' => array('null', 'string', 'Doctrine\Common\Persistence\ObjectManager'),
183+
'em' => array('null', 'string', 'Doctrine\Common\Persistence\ObjectManager'),
184184
'loader' => array('null', 'Symfony\Bridge\Doctrine\Form\ChoiceList\EntityLoaderInterface'),
185185
));
186186
}

src/Symfony/Bundle/DebugBundle/Tests/DependencyInjection/DebugExtensionTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ private function createContainer()
3838
{
3939
$container = new ContainerBuilder(new ParameterBag(array(
4040
'kernel.cache_dir' => __DIR__,
41-
'kernel.root_dir' => __DIR__.'/Fixtures',
42-
'kernel.charset' => 'UTF-8',
43-
'kernel.debug' => true,
44-
'kernel.bundles' => array('DebugBundle' => 'Symfony\\Bundle\\DebugBundle\\DebugBundle'),
41+
'kernel.root_dir' => __DIR__.'/Fixtures',
42+
'kernel.charset' => 'UTF-8',
43+
'kernel.debug' => true,
44+
'kernel.bundles' => array('DebugBundle' => 'Symfony\\Bundle\\DebugBundle\\DebugBundle'),
4545
)));
4646

4747
return $container;

src/Symfony/Bundle/FrameworkBundle/Tests/Console/Descriptor/AbstractDescriptorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ private function getContainerBuilderDescriptionTestData(array $objects)
175175
private function getEventDispatcherDescriptionTestData(array $objects)
176176
{
177177
$variations = array(
178-
'events' => array(),
179-
'event1' => array('event' => 'event1'),
178+
'events' => array(),
179+
'event1' => array('event' => 'event1'),
180180
);
181181

182182
$data = array();

src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/ConfigurationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ protected static function getBundleDefaultConfig()
123123
'translator' => array(
124124
'enabled' => false,
125125
'fallback' => 'en',
126-
'logging' => true,
126+
'logging' => true,
127127
),
128128
'validation' => array(
129129
'enabled' => false,

src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -162,21 +162,21 @@ public function testDefaultLogger()
162162
$handler->setDefaultLogger($logger, array(E_USER_NOTICE => LogLevel::CRITICAL));
163163

164164
$loggers = array(
165-
E_DEPRECATED => array(null, LogLevel::INFO),
166-
E_USER_DEPRECATED => array(null, LogLevel::INFO),
167-
E_NOTICE => array($logger, LogLevel::NOTICE),
168-
E_USER_NOTICE => array($logger, LogLevel::CRITICAL),
169-
E_STRICT => array(null, LogLevel::NOTICE),
170-
E_WARNING => array(null, LogLevel::WARNING),
171-
E_USER_WARNING => array(null, LogLevel::WARNING),
172-
E_COMPILE_WARNING => array(null, LogLevel::WARNING),
173-
E_CORE_WARNING => array(null, LogLevel::WARNING),
174-
E_USER_ERROR => array(null, LogLevel::ERROR),
165+
E_DEPRECATED => array(null, LogLevel::INFO),
166+
E_USER_DEPRECATED => array(null, LogLevel::INFO),
167+
E_NOTICE => array($logger, LogLevel::NOTICE),
168+
E_USER_NOTICE => array($logger, LogLevel::CRITICAL),
169+
E_STRICT => array(null, LogLevel::NOTICE),
170+
E_WARNING => array(null, LogLevel::WARNING),
171+
E_USER_WARNING => array(null, LogLevel::WARNING),
172+
E_COMPILE_WARNING => array(null, LogLevel::WARNING),
173+
E_CORE_WARNING => array(null, LogLevel::WARNING),
174+
E_USER_ERROR => array(null, LogLevel::ERROR),
175175
E_RECOVERABLE_ERROR => array(null, LogLevel::ERROR),
176-
E_COMPILE_ERROR => array(null, LogLevel::EMERGENCY),
177-
E_PARSE => array(null, LogLevel::EMERGENCY),
178-
E_ERROR => array(null, LogLevel::EMERGENCY),
179-
E_CORE_ERROR => array(null, LogLevel::EMERGENCY),
176+
E_COMPILE_ERROR => array(null, LogLevel::EMERGENCY),
177+
E_PARSE => array(null, LogLevel::EMERGENCY),
178+
E_ERROR => array(null, LogLevel::EMERGENCY),
179+
E_CORE_ERROR => array(null, LogLevel::EMERGENCY),
180180
);
181181
$this->assertSame($loggers, $handler->setLoggers(array()));
182182

src/Symfony/Component/HttpFoundation/Request.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ class Request
3535
const HEADER_CLIENT_PROTO = 'client_proto';
3636
const HEADER_CLIENT_PORT = 'client_port';
3737

38-
const METHOD_HEAD = 'HEAD';
39-
const METHOD_GET = 'GET';
40-
const METHOD_POST = 'POST';
41-
const METHOD_PUT = 'PUT';
42-
const METHOD_PATCH = 'PATCH';
43-
const METHOD_DELETE = 'DELETE';
44-
const METHOD_PURGE = 'PURGE';
38+
const METHOD_HEAD = 'HEAD';
39+
const METHOD_GET = 'GET';
40+
const METHOD_POST = 'POST';
41+
const METHOD_PUT = 'PUT';
42+
const METHOD_PATCH = 'PATCH';
43+
const METHOD_DELETE = 'DELETE';
44+
const METHOD_PURGE = 'PURGE';
4545
const METHOD_OPTIONS = 'OPTIONS';
46-
const METHOD_TRACE = 'TRACE';
46+
const METHOD_TRACE = 'TRACE';
4747
const METHOD_CONNECT = 'CONNECT';
4848

4949
protected static $trustedProxies = array();

src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function testWrite()
103103
public function testWriteWhenUsingExpiresField()
104104
{
105105
$this->options = array(
106-
'id_field' => '_id',
106+
'id_field' => '_id',
107107
'data_field' => 'data',
108108
'time_field' => 'time',
109109
'database' => 'sf2-test',
@@ -202,7 +202,7 @@ public function testGc()
202202
public function testGcWhenUsingExpiresField()
203203
{
204204
$this->options = array(
205-
'id_field' => '_id',
205+
'id_field' => '_id',
206206
'data_field' => 'data',
207207
'time_field' => 'time',
208208
'database' => 'sf2-test',

src/Symfony/Component/Process/Pipes/WindowsPipes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function __construct($disableOutput, $input)
6060
}
6161

6262
if (is_resource($input)) {
63-
$this->input = $input;
63+
$this->input = $input;
6464
} else {
6565
$this->inputBuffer = $input;
6666
}

src/Symfony/Component/Security/Core/Security.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*/
1919
final class Security
2020
{
21-
const ACCESS_DENIED_ERROR = '_security.403_error';
21+
const ACCESS_DENIED_ERROR = '_security.403_error';
2222
const AUTHENTICATION_ERROR = '_security.last_error';
23-
const LAST_USERNAME = '_security.last_username';
23+
const LAST_USERNAME = '_security.last_username';
2424
}

src/Symfony/Component/Security/Http/Authentication/DefaultAuthenticationFailureHandler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandle
3535
protected $logger;
3636
protected $options;
3737
protected $defaultOptions = array(
38-
'failure_path' => null,
39-
'failure_forward' => false,
40-
'login_path' => '/login',
38+
'failure_path' => null,
39+
'failure_forward' => false,
40+
'login_path' => '/login',
4141
'failure_path_parameter' => '_failure_path',
4242
);
4343

src/Symfony/Component/Security/Http/Authentication/DefaultAuthenticationSuccessHandler.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ class DefaultAuthenticationSuccessHandler implements AuthenticationSuccessHandle
2929
protected $providerKey;
3030
protected $defaultOptions = array(
3131
'always_use_default_target_path' => false,
32-
'default_target_path' => '/',
33-
'login_path' => '/login',
34-
'target_path_parameter' => '_target_path',
35-
'use_referer' => false,
32+
'default_target_path' => '/',
33+
'login_path' => '/login',
34+
'target_path_parameter' => '_target_path',
35+
'use_referer' => false,
3636
);
3737

3838
/**

src/Symfony/Component/Serializer/Tests/Encoder/XmlEncoderTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -446,11 +446,11 @@ protected function getNamespacedXmlSource()
446446
protected function getNamespacedArray()
447447
{
448448
return array(
449-
'@xmlns' => 'http://www.w3.org/2005/Atom',
450-
'@xmlns:app' => 'http://www.w3.org/2007/app',
449+
'@xmlns' => 'http://www.w3.org/2005/Atom',
450+
'@xmlns:app' => 'http://www.w3.org/2007/app',
451451
'@xmlns:media' => 'http://search.yahoo.com/mrss/',
452-
'@xmlns:gd' => 'http://schemas.google.com/g/2005',
453-
'@xmlns:yt' => 'http://gdata.youtube.com/schemas/2007',
452+
'@xmlns:gd' => 'http://schemas.google.com/g/2005',
453+
'@xmlns:yt' => 'http://gdata.youtube.com/schemas/2007',
454454
'qux' => "1",
455455
'app:foo' => "foo",
456456
'yt:bar' => array("a", "b"),
@@ -469,7 +469,7 @@ protected function getNamespacedArray()
469469
'Barry' => array(
470470
'@size' => 'large',
471471
'FooBar' => array(
472-
'Baz' => 'Ed',
472+
'Baz' => 'Ed',
473473
'@gd:id' => 1,
474474
),
475475
),

src/Symfony/Component/Translation/Tests/TranslatorCacheTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ protected function getLoader()
153153
->expects($this->at(1))
154154
->method('load')
155155
->will($this->returnValue($this->getCatalogue('en', array(
156-
'foo' => 'foo (EN)',
157-
'bar' => 'bar (EN)',
156+
'foo' => 'foo (EN)',
157+
'bar' => 'bar (EN)',
158158
'choice' => '{0} choice 0 (EN)|{1} choice 1 (EN)|]1,Inf] choice inf (EN)',
159159
))))
160160
;

src/Symfony/Component/Validator/Tests/Constraints/FileValidatorTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,9 @@ public function testBinaryFormat($bytesWritten, $limit, $binaryFormat, $sizeAsSt
271271
fclose($this->file);
272272

273273
$constraint = new File(array(
274-
'maxSize' => $limit,
275-
'binaryFormat' => $binaryFormat,
276-
'maxSizeMessage' => 'myMessage',
274+
'maxSize' => $limit,
275+
'binaryFormat' => $binaryFormat,
276+
'maxSizeMessage' => 'myMessage',
277277
));
278278

279279
$this->validator->validate($this->getFile($this->path), $constraint);

src/Symfony/Component/VarDumper/Cloner/AbstractCloner.php

Lines changed: 43 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -24,61 +24,59 @@ abstract class AbstractCloner implements ClonerInterface
2424
'Symfony\Component\VarDumper\Caster\CutStub' => 'Symfony\Component\VarDumper\Caster\StubCaster::castStub',
2525
'Symfony\Component\VarDumper\Caster\ConstStub' => 'Symfony\Component\VarDumper\Caster\StubCaster::castStub',
2626

27-
'Closure' => 'Symfony\Component\VarDumper\Caster\ReflectionCaster::castClosure',
28-
'Reflector' => 'Symfony\Component\VarDumper\Caster\ReflectionCaster::castReflector',
27+
'Closure' => 'Symfony\Component\VarDumper\Caster\ReflectionCaster::castClosure',
28+
'Reflector' => 'Symfony\Component\VarDumper\Caster\ReflectionCaster::castReflector',
2929

3030
'Doctrine\Common\Persistence\ObjectManager' => 'Symfony\Component\VarDumper\Caster\StubCaster::cutInternals',
31-
'Doctrine\Common\Proxy\Proxy' => 'Symfony\Component\VarDumper\Caster\DoctrineCaster::castCommonProxy',
32-
'Doctrine\ORM\Proxy\Proxy' => 'Symfony\Component\VarDumper\Caster\DoctrineCaster::castOrmProxy',
33-
'Doctrine\ORM\PersistentCollection' => 'Symfony\Component\VarDumper\Caster\DoctrineCaster::castPersistentCollection',
34-
35-
'DOMException' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castException',
36-
'DOMStringList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
37-
'DOMNameList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
38-
'DOMImplementation' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castImplementation',
39-
'DOMImplementationList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
40-
'DOMNode' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castNode',
41-
'DOMNameSpaceNode' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castNameSpaceNode',
42-
'DOMDocument' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castDocument',
43-
'DOMNodeList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
44-
'DOMNamedNodeMap' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
45-
'DOMCharacterData' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castCharacterData',
46-
'DOMAttr' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castAttr',
47-
'DOMElement' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castElement',
48-
'DOMText' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castText',
49-
'DOMTypeinfo' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castTypeinfo',
50-
'DOMDomError' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castDomError',
51-
'DOMLocator' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLocator',
52-
'DOMDocumentType' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castDocumentType',
53-
'DOMNotation' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castNotation',
54-
'DOMEntity' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castEntity',
31+
'Doctrine\Common\Proxy\Proxy' => 'Symfony\Component\VarDumper\Caster\DoctrineCaster::castCommonProxy',
32+
'Doctrine\ORM\Proxy\Proxy' => 'Symfony\Component\VarDumper\Caster\DoctrineCaster::castOrmProxy',
33+
'Doctrine\ORM\PersistentCollection' => 'Symfony\Component\VarDumper\Caster\DoctrineCaster::castPersistentCollection',
34+
35+
'DOMException' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castException',
36+
'DOMStringList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
37+
'DOMNameList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
38+
'DOMImplementation' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castImplementation',
39+
'DOMImplementationList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
40+
'DOMNode' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castNode',
41+
'DOMNameSpaceNode' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castNameSpaceNode',
42+
'DOMDocument' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castDocument',
43+
'DOMNodeList' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
44+
'DOMNamedNodeMap' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLength',
45+
'DOMCharacterData' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castCharacterData',
46+
'DOMAttr' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castAttr',
47+
'DOMElement' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castElement',
48+
'DOMText' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castText',
49+
'DOMTypeinfo' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castTypeinfo',
50+
'DOMDomError' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castDomError',
51+
'DOMLocator' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castLocator',
52+
'DOMDocumentType' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castDocumentType',
53+
'DOMNotation' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castNotation',
54+
'DOMEntity' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castEntity',
5555
'DOMProcessingInstruction' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castProcessingInstruction',
56-
'DOMXPath' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castXPath',
56+
'DOMXPath' => 'Symfony\Component\VarDumper\Caster\DOMCaster::castXPath',
5757

5858
'ErrorException' => 'Symfony\Component\VarDumper\Caster\ExceptionCaster::castErrorException',
59-
'Exception' => 'Symfony\Component\VarDumper\Caster\ExceptionCaster::castException',
60-
'Symfony\Component\DependencyInjection\ContainerInterface'
61-
=> 'Symfony\Component\VarDumper\Caster\StubCaster::cutInternals',
62-
'Symfony\Component\VarDumper\Exception\ThrowingCasterException'
63-
=> 'Symfony\Component\VarDumper\Caster\ExceptionCaster::castThrowingCasterException',
59+
'Exception' => 'Symfony\Component\VarDumper\Caster\ExceptionCaster::castException',
60+
'Symfony\Component\DependencyInjection\ContainerInterface' => 'Symfony\Component\VarDumper\Caster\StubCaster::cutInternals',
61+
'Symfony\Component\VarDumper\Exception\ThrowingCasterException' => 'Symfony\Component\VarDumper\Caster\ExceptionCaster::castThrowingCasterException',
6462

65-
'PDO' => 'Symfony\Component\VarDumper\Caster\PdoCaster::castPdo',
66-
'PDOStatement' => 'Symfony\Component\VarDumper\Caster\PdoCaster::castPdoStatement',
63+
'PDO' => 'Symfony\Component\VarDumper\Caster\PdoCaster::castPdo',
64+
'PDOStatement' => 'Symfony\Component\VarDumper\Caster\PdoCaster::castPdoStatement',
6765

68-
'ArrayObject' => 'Symfony\Component\VarDumper\Caster\SplCaster::castArrayObject',
66+
'ArrayObject' => 'Symfony\Component\VarDumper\Caster\SplCaster::castArrayObject',
6967
'SplDoublyLinkedList' => 'Symfony\Component\VarDumper\Caster\SplCaster::castDoublyLinkedList',
70-
'SplFixedArray' => 'Symfony\Component\VarDumper\Caster\SplCaster::castFixedArray',
71-
'SplHeap' => 'Symfony\Component\VarDumper\Caster\SplCaster::castHeap',
72-
'SplObjectStorage' => 'Symfony\Component\VarDumper\Caster\SplCaster::castObjectStorage',
73-
'SplPriorityQueue' => 'Symfony\Component\VarDumper\Caster\SplCaster::castHeap',
68+
'SplFixedArray' => 'Symfony\Component\VarDumper\Caster\SplCaster::castFixedArray',
69+
'SplHeap' => 'Symfony\Component\VarDumper\Caster\SplCaster::castHeap',
70+
'SplObjectStorage' => 'Symfony\Component\VarDumper\Caster\SplCaster::castObjectStorage',
71+
'SplPriorityQueue' => 'Symfony\Component\VarDumper\Caster\SplCaster::castHeap',
7472

75-
':curl' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castCurl',
76-
':dba' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castDba',
73+
':curl' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castCurl',
74+
':dba' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castDba',
7775
':dba persistent' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castDba',
78-
':gd' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castGd',
79-
':mysql link' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castMysqlLink',
80-
':process' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castProcess',
81-
':stream' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castStream',
76+
':gd' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castGd',
77+
':mysql link' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castMysqlLink',
78+
':process' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castProcess',
79+
':stream' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castStream',
8280
':stream-context' => 'Symfony\Component\VarDumper\Caster\ResourceCaster::castStreamContext',
8381
);
8482

0 commit comments

Comments
 (0)
0