Skip to content
This repository has been archived by the owner on Nov 21, 2017. It is now read-only.

Commit

Permalink
Code style fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed Jan 26, 2014
1 parent 73d205d commit dd882af
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions src/Element/DocumentationBlock.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ class DocumentationBlock
/**
* Construct a new documentation block.
*
* @param array<DocumentationTag>|null $tags The tags contained in the
* block.
* @param array<DocumentationTag>|null $tags The tags contained in the block.
* @param string|null $summary The summary text.
* @param string|null $body The body text.
*/
Expand Down
2 changes: 0 additions & 2 deletions test/suite/Element/DocumentationBlockTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ public function testBlock()
$this->assertNull($block->summary());
$this->assertNull($block->body());


$tags = array(
new DocumentationTag('foo', 'bar'),
new DocumentationTag('baz', 'qux'),
Expand Down Expand Up @@ -62,7 +61,6 @@ public function testTagsByName()
);
$expectedBaz = array();


$this->assertEquals($expectedFoo, $block->tagsByName('foo'));
$this->assertEquals($expectedBar, $block->tagsByName('bar'));
$this->assertEquals($expectedBaz, $block->tagsByName('baz'));
Expand Down

0 comments on commit dd882af

Please sign in to comment.