Method | Description | |
---|---|---|
deleteFileAction ( $id ) : |
||
getFileAction ( integer $id ) : array | Get single IssueFile. | |
getFilesAction ( FOS\RestBundle\Request\ParamFetcherInterface $paramFetcher ) : array | List all IssueFiles. | |
newFileAction ( ) : Symfony\Component\Form\FormTypeInterface | Presents the form to use to create a new IssueFile. | |
patchFileAction ( |
Update existing issue file from the submitted data or create a new issue file at a specific location. | |
postFileAction ( |
Create a IssueFile from the submitted data. | |
putFileAction ( |
Update existing IssueFile from the submitted data or create a new IssueFile at a specific location. |
Method | Description | |
---|---|---|
getOr404 ( mixed $id, boolean $normalize = false ) : |
Fetch a IssueFile or throw an 404 Exception. |
public deleteFileAction ( $id ) : |
||
$id | ||
return |
public getFileAction ( integer $id ) : array | ||
$id | integer | the IssueFile id |
return | array |
public getFilesAction ( FOS\RestBundle\Request\ParamFetcherInterface $paramFetcher ) : array | ||
$paramFetcher | FOS\RestBundle\Request\ParamFetcherInterface | param fetcher service |
return | array |
public newFileAction ( ) : Symfony\Component\Form\FormTypeInterface | ||
return | Symfony\Component\Form\FormTypeInterface |
public patchFileAction ( |
||
$request | the request object | |
$id | integer | the issue file id |
return | Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View |
public postFileAction ( |
||
$request | the request object | |
return | Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View |
public putFileAction ( |
||
$request | the request object | |
$id | integer | the IssueFile id |
return | Symfony\Component\Form\FormTypeInterface | FOS\RestBundle\Controller\Annotations\View |