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

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'release'
Close #2359
  • Loading branch information
weierophinney committed Sep 14, 2012
2 parents ac486fd + 5077af8 commit 4f6e7a6
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions library/Zend/Server/Method/Parameter.php
Expand Up @@ -20,27 +20,37 @@
class Parameter
{
/**
* @var mixed Default parameter value
* Default parameter value
*
* @var mixed
*/
protected $defaultValue;

/**
* @var string Parameter description
* Parameter description
*
* @var string
*/
protected $description = '';

/**
* @var string Parameter variable name
* Parameter variable name
*
* @var string
*/
protected $name;

/**
* @var bool Is parameter optional?
* Is parameter optional?
*
* @var bool
*/
protected $optional = false;

/**
* @var string Parameter type
* Parameter type
*
* @var string
*/
protected $type = 'mixed';

Expand Down

0 comments on commit 4f6e7a6

Please sign in to comment.