kix/apiranha

View on GitHub
src/Annotation/Delete.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Kix\Apiranha\Annotation;

use Doctrine\Common\Annotations\Annotation;

/**
 * DELETE annotation
 * 
 * This annotation represents a DELETE endpoint.
 * 
 * @Annotation
 * @Target({"METHOD"})
 */
class Delete extends Method
{

}