Skip to content
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
4 changes: 0 additions & 4 deletions src/Formatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class Formatter
*/
private $inlineParentheses = false;


/**
* @var bool
*/
Expand Down Expand Up @@ -197,8 +196,6 @@ private function removeTokenWhitespace(array &$originalTokens)
return $tokens;
}



/**
* Adds a new line break if needed.
*
Expand Down Expand Up @@ -378,7 +375,6 @@ private function addNewLineAfterOpeningParentheses()
}
}


/**
* @param boolean $addedNewline
* @param string $tab
Expand Down
6 changes: 2 additions & 4 deletions src/Helper/Indent.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public function increaseBlockIndent()
}
}


/**
* Closing parentheses decrease the block indent level.
*/
Expand All @@ -85,7 +84,6 @@ public function decreaseIndentLevelUntilIndentTypeIsSpecial(Formatter $formatter
}
}


/**
*/
public function decreaseSpecialIndentIfCurrentIndentTypeIsSpecial()
Expand All @@ -99,15 +97,15 @@ public function decreaseSpecialIndentIfCurrentIndentTypeIsSpecial()
}

/**
* @return int
* @return boolean
*/
public function getIncreaseBlockIndent()
{
return $this->increaseBlockIndent;
}

/**
* @return int
* @return boolean
*/
public function getIncreaseSpecialIndent()
{
Expand Down
1 change: 0 additions & 1 deletion src/Helper/Tokenizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ class Tokenizer
const TOKEN_TYPE = 0;
const TOKEN_VALUE = 1;


/**
* @var string
*/
Expand Down