Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of git://github.com/zendframework/zf2
Browse files Browse the repository at this point in the history
Fixed files permissions
  • Loading branch information
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev",
"dev-develop": "2.5-dev"
"dev-master": "2.1-dev",
"dev-develop": "2.2-dev"
}
},
"autoload-dev": {
Expand Down
6 changes: 1 addition & 5 deletions src/Debug.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Debug.php
*/

namespace Zend\Debug;
Expand All @@ -14,9 +13,6 @@

/**
* Concrete class for generating debug dumps related to the output source.
*
* @category Zend
* @package Zend_Debug
*/
class Debug
{
Expand Down Expand Up @@ -91,7 +87,7 @@ public static function getEscaper()
* @param bool $echo OPTIONAL Echo output if true.
* @return string
*/
public static function dump($var, $label=null, $echo=true)
public static function dump($var, $label = null, $echo = true)
{
// format the label
$label = ($label===null) ? '' : rtrim($label) . ' ';
Expand Down

0 comments on commit 9913571

Please sign in to comment.