Skip to content

Fixed @return when returning this or static #bis #21100

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

Merged
merged 1 commit into from
Dec 30, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/Symfony/Component/Console/Helper/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ public function getStyle()
* @param int $columnIndex Column index
* @param TableStyle|string $name The style name or a TableStyle instance
*
* @return self
* @return $this
*/
public function setColumnStyle($columnIndex, $name)
{
Expand Down
12 changes: 6 additions & 6 deletions src/Symfony/Component/DependencyInjection/Definition.php
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ public function getFile()
*
* @param bool $shared Whether the service must be shared or not
*
* @return self
* @return $this
*/
public function setShared($shared)
{
Expand Down Expand Up @@ -749,7 +749,7 @@ public function isAbstract()
* @param bool $status
* @param string $template Template message to use if the definition is deprecated
*
* @return self
* @return $this
*
* @throws InvalidArgumentException When the message template is invalid.
*/
Expand Down Expand Up @@ -824,7 +824,7 @@ public function getConfigurator()
*
* @param string[] $types
*
* @return self
* @return $this
*/
public function setAutowiringTypes(array $types)
{
Expand Down Expand Up @@ -852,7 +852,7 @@ public function isAutowired()
*
* @param bool $autowired
*
* @return self
* @return $this
*/
public function setAutowired($autowired)
{
Expand All @@ -876,7 +876,7 @@ public function getAutowiringTypes()
*
* @param string $type
*
* @return self
* @return $this
*/
public function addAutowiringType($type)
{
Expand All @@ -890,7 +890,7 @@ public function addAutowiringType($type)
*
* @param string $type
*
* @return self
* @return $this
*/
public function removeAutowiringType($type)
{
Expand Down