Skip to content

Commit

Permalink
Fixed trait composition error
Browse files Browse the repository at this point in the history
  • Loading branch information
kocsismate committed Oct 25, 2014
1 parent bff8769 commit f115624
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/Swagger2/Schema/AbstractExtendedSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,6 @@ abstract class AbstractExtendedSchema implements SchemaInterface
*/
private $ref;

/**
* @var string|array
*/
private $type;

/**
* @var string
*/
Expand Down Expand Up @@ -84,25 +79,6 @@ public function setRef(SchemaRef $ref)
return $this;
}

/**
* @return array|string
*/
public function getType()
{
return $this->type;
}

/**
* @param array|string $type
* @return $this
*/
public function setType($type)
{
$this->type = $type;

return $this;
}

/**
* @return string
*/
Expand Down

0 comments on commit f115624

Please sign in to comment.