Remove @package tag from phpdoc throughout.
This commit is contained in:
parent
d9840067db
commit
c61b2197ea
|
|
@ -0,0 +1,11 @@
|
|||
<component name="InspectionProjectProfileManager">
|
||||
<profile version="1.0" is_locked="false">
|
||||
<option name="myName" value="Project Default" />
|
||||
<option name="myLocal" value="false" />
|
||||
<inspection_tool class="SpellCheckingInspection" enabled="false" level="TYPO" enabled_by_default="false">
|
||||
<option name="processCode" value="true" />
|
||||
<option name="processLiterals" value="true" />
|
||||
<option name="processComments" value="true" />
|
||||
</inspection_tool>
|
||||
</profile>
|
||||
</component>
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
<component name="InspectionProjectProfileManager">
|
||||
<settings>
|
||||
<option name="PROJECT_PROFILE" value="Project Default" />
|
||||
<option name="USE_PROJECT_PROFILE" value="true" />
|
||||
<version value="1.0" />
|
||||
</settings>
|
||||
</component>
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<component name="DependencyValidationManager">
|
||||
<state>
|
||||
<option name="SKIP_IMPORT_STATEMENTS" value="false" />
|
||||
</state>
|
||||
</component>
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<phpdoc>
|
||||
<title>WellRESTed</title>
|
||||
<parser>
|
||||
<target>docs</target>
|
||||
<markers>
|
||||
<item>TODO</item>
|
||||
<item>FIXME</item>
|
||||
</markers>
|
||||
</parser>
|
||||
<transformer>
|
||||
<target>docs</target>
|
||||
</transformer>
|
||||
<transformations>
|
||||
<template name="responsive" />
|
||||
</transformations>
|
||||
<files>
|
||||
<directory>src</directory>
|
||||
<ignore>test/*</ignore>
|
||||
</files>
|
||||
</phpdoc>
|
||||
|
|
@ -12,7 +12,6 @@ namespace pjdietz\WellRESTed\Interfaces;
|
|||
|
||||
/**
|
||||
* Provides a mechanism for obtaining a response given a request.
|
||||
* @package pjdietz\WellRESTed
|
||||
*/
|
||||
interface HandlerInterface {
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ namespace pjdietz\WellRESTed\Interfaces;
|
|||
|
||||
/**
|
||||
* Interface for representing an HTTP request.
|
||||
* @package pjdietz\WellRESTed
|
||||
*/
|
||||
interface RequestInterface
|
||||
{
|
||||
|
|
|
|||
|
|
@ -12,7 +12,6 @@ namespace pjdietz\WellRESTed\Interfaces;
|
|||
|
||||
/**
|
||||
* Interface for representing an HTTP response.
|
||||
* @package pjdietz\WellRESTed
|
||||
*/
|
||||
interface ResponseInterface
|
||||
{
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ use pjdietz\WellRESTed\Interfaces\HandlerInterface;
|
|||
|
||||
/**
|
||||
* Base class for Routes.
|
||||
* @package pjdietz\WellRESTed\Routes
|
||||
*/
|
||||
abstract class BaseRoute implements HandlerInterface
|
||||
{
|
||||
|
|
|
|||
|
|
@ -7,7 +7,6 @@ use pjdietz\WellRESTed\Interfaces\RequestInterface;
|
|||
|
||||
/**
|
||||
* Class StaticRoute
|
||||
* @package pjdietz\WellRESTed\Routes
|
||||
*/
|
||||
class StaticRoute extends BaseRoute
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue