8000 fix class use and in phpdoc by ewgRa · Pull Request #15733 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

fix class use and in phpdoc #15733

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cs fix
  • Loading branch information
ewgRa committed Sep 8, 2015
commit 4d002d24cc3f0c041df6a8a3f383a1728391e161
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ private function getEventDispatcherListenersDocument(EventDispatcherInterface $e

/**
* @param \DOMElement $element
* @param array $eventListeners
* @param array 8000 $eventListeners
*/
private function appendEventListenerDocument(\DOMElement $element, array $eventListeners)
{
Expand Down
4 changes: 2 additions & 2 deletions src/Symfony/Component/Console/Helper/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ private function buildTableRows($rows)
* fill rows that contains rowspan > 1.
*
* @param array $rows
* @param int $line
* @param int $line
*
* @return array
*/
Expand Down Expand Up @@ -431,7 +431,7 @@ private function fillNextRows($rows, $line)
* fill cells for a row that contains colspan > 1.
*
* @param array $row
* @param int $column
* @param int $column
*
* @return array
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/VarDumper/Caster/Caster.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Caster
/**
* Casts objects to arrays and adds the dynamic property prefix.
*
* @param object $obj The object to cast.
* @param object $obj The object to cast.
* @param \ReflectionClass $reflector The class reflector to use for inspecting the object definition.
*
* @return array The array-cast of the object, with prefixed dynamic properties.
Expand Down
0