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

Commit

Permalink
[#4978] CS fixes
Browse files Browse the repository at this point in the history
- indentation
  • Loading branch information
weierophinney committed Aug 19, 2013
1 parent efe7e7b commit a8cc9f2
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions tests/ZendTest/Code/Reflection/TestAsset/TestSampleClass10.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,39 +25,39 @@
class TestSampleClass10
{

/**
* Method ShortDescription
*
* Method LongDescription
* This is a long description for
* the docblock of this class, it
* should be longer than 3 lines.
* It indeed is longer than 3 lines
* now.
*
* @param int $one Description for one
* @param int Description for two
* @param string $three Description for three
* which spans multiple lines
* @return mixed Some return descr
*/
public function doSomething($one, $two = 2, $three = 'three')
{
return 'mixedValue';
}
/**
* Method ShortDescription
*
* Method LongDescription
* This is a long description for
* the docblock of this class, it
* should be longer than 3 lines.
* It indeed is longer than 3 lines
* now.
*
* @param int $one Description for one
* @param int Description for two
* @param string $three Description for three
* which spans multiple lines
* @return mixed Some return descr
*/
public function doSomething($one, $two = 2, $three = 'three')
{
return 'mixedValue';
}

/**
* Method ShortDescription
*
* @param int $one Description for one
* @param int Description for two
* @param string $three Description for three
* which spans multiple lines
* @return int
*/
public function doSomethingElse($one, $two = 2, $three = 'three')
{
return 'mixedValue';
}
/**
* Method ShortDescription
*
* @param int $one Description for one
* @param int Description for two
* @param string $three Description for three
* which spans multiple lines
* @return int
*/
public function doSomethingElse($one, $two = 2, $three = 'three')
{
return 'mixedValue';
}

}

0 comments on commit a8cc9f2

Please sign in to comment.