Skip to content

Commit

Permalink
zendframework#7095 - Making public callback private, since PHP 5.3 …
Browse files Browse the repository at this point in the history
…compatibility is dropped
  • Loading branch information
Ocramius committed Jan 13, 2015
1 parent 6efed4d commit 62986cc
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,12 @@ private function normalizeColumnOption($name)
}

/**
* @internal @private this method is only public for PHP 5.3 compatibility purposes.
*
* @param string $columnA
* @param string $columnB
*
* @return int
*/
public function compareColumnOptions($columnA, $columnB)
private function compareColumnOptions($columnA, $columnB)
{
$columnA = $this->normalizeColumnOption($columnA);
$columnA = isset($this->columnOptionSortOrder[$columnA])
Expand Down

0 comments on commit 62986cc

Please sign in to comment.