Skip to content

Commit 21218ad

Browse files
committed
Remove aligned '=>' and '='
1 parent 8f14e58 commit 21218ad

File tree

3 files changed

+75
-77
lines changed

3 files changed

+75
-77
lines changed

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

Dumper/CliDumper.php

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ class CliDumper extends AbstractDumper
2828
protected $maxStringWidth = 0;
2929
protected $styles = array(
3030
// See http://en.wikipedia.org/wiki/ANSI_escape_code#graphics
31-
'default' => '38;5;208',
32-
'num' => '1;38;5;38',
33-
'const' => '1;38;5;208',
34-
'str' => '1;38;5;113',
35-
'cchr' => '7',
36-
'note' => '38;5;38',
37-
'ref' => '38;5;247',
38-
'public' => '',
31+
'default' => '38;5;208',
32+
'num' => '1;38;5;38',
33+
'const' => '1;38;5;208',
34+
'str' => '1;38;5;113',
35+
'cchr' => '7',
36+
'note' => '38;5;38',
37+
'ref' => '38;5;247',
38+
'public' => '',
3939
'protected' => '',
40-
'private' => '',
41-
'meta' => '38;5;170',
42-
'key' => '38;5;113',
43-
'index' => '38;5;38',
40+
'private' => '',
41+
'meta' => '38;5;170',
42+
'key' => '38;5;113',
43+
'index' => '38;5;38',
4444
);
4545

4646
protected static $controlCharsRx = '/[\x00-\x1F\x7F]/';
@@ -56,14 +56,14 @@ public function __construct($output = null)
5656
// Use only the base 16 xterm colors when using ANSICON
5757
$this->setStyles(array(
5858
'default' => '31',
59-
'num' => '1;34',
60-
'const' => '1;31',
61-
'str' => '1;32',
62-
'note' => '34',
63-
'ref' => '1;30',
64-
'meta' => '35',
65-
'key' => '32',
66-
'index' => '34',
59+
'num' => '1;34',
60+
'const' => '1;31',
61+
'str' => '1;32',
62+
'note' => '34',
63+
'ref' => '1;30',
64+
'meta' => '35',
65+
'key' => '32',
66+
'index' => '34',
6767
));
6868
}
6969
}

Dumper/HtmlDumper.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ class HtmlDumper extends CliDumper
3131
protected $headerIsDumped = false;
3232
protected $lastDepth = -1;
3333
protected $styles = array(
34-
'default' => 'background-color:#18171B; color:#FF8400; line-height:1.2em; font:12px Menlo, Monaco, Consolas, monospace',
35-
'num' => 'font-weight:bold; color:#1299DA',
36-
'const' => 'font-weight:bold',
37-
'str' => 'font-weight:bold; color:#56DB3A',
38-
'cchr' => 'font-style:italic',
39-
'note' => 'color:#1299DA',
40-
'ref' => 'color:#A0A0A0',
41-
'public' => 'color:#FFFFFF',
34+
'default' => 'background-color:#18171B; color:#FF8400; line-height:1.2em; font:12px Menlo, Monaco, Consolas, monospace',
35+
'num' => 'font-weight:bold; color:#1299DA',
36+
'const' => 'font-weight:bold',
37+
'str' => 'font-weight:bold; color:#56DB3A',
38+
'cchr' => 'font-style:italic',
39+
'note' => 'color:#1299DA',
40+
'ref' => 'color:#A0A0A0',
41+
'public' => 'color:#FFFFFF',
4242
'protected' => 'color:#FFFFFF',
43-
'private' => 'color:#FFFFFF',
44-
'meta' => 'color:#B729D9',
45-
'key' => 'color:#56DB3A',
46-
'index' => 'color:#1299DA',
43+
'private' => 'color:#FFFFFF',
44+
'meta' => 'color:#B729D9',
45+
'key' => 'color:#56DB3A',
46+
'index' => 'color:#1299DA',
4747
);
4848

4949
/**

0 commit comments

Comments
 (0)