orkestra / OrkestraGuzzleBundle

Symfony2 bundle for Guzzle
10 stars 2 forks source link

Unknown property 'value' on annotation 'Orkestra\Bundle\GuzzleBundle\Services\Annotation\Param'. #54

Closed HelloGrayson closed 11 years ago

HelloGrayson commented 11 years ago

Getting the following error when attempting to execute a command:

Unknown property 'value' on annotation 'Orkestra\Bundle\GuzzleBundle\Services\Annotation\Param'.

Appears to be happening here...

Orkestra/Bundle/GuzzleBundle/Services/Annotation/Param.php at line 84

From what I can tell the command loads correctly because If I delete the command method then I get:

Command was not found matching user_information

Am I missing something?

HelloGrayson commented 11 years ago

Nevermind... messed up my annotations...

was:

@Param("api_key", type="string", required="true")

should be:

@Param(name="api_key", type="string", required="true")