mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
Applied some php-cs-fixer magic
This commit is contained in:
parent
84ad827c89
commit
04b075736f
@ -40,7 +40,7 @@ class ApiDoc
|
||||
{
|
||||
if (isset($data['formType'])) {
|
||||
$this->formType = $data['formType'];
|
||||
} else if (isset($data['filters'])) {
|
||||
} elseif (isset($data['filters'])) {
|
||||
foreach ($data['filters'] as $filter) {
|
||||
if (!isset($filter['name'])) {
|
||||
throw new \InvalidArgumentException('A "filter" element has to contain a "name" attribute');
|
||||
|
@ -11,7 +11,6 @@
|
||||
|
||||
namespace Nelmio\ApiDocBundle\DependencyInjection;
|
||||
|
||||
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
|
||||
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
|
||||
use Symfony\Component\Config\Definition\ConfigurationInterface;
|
||||
|
||||
|
@ -59,7 +59,7 @@ abstract class AbstractFormatter implements FormatterInterface
|
||||
* @param array $data
|
||||
* @return string|array
|
||||
*/
|
||||
protected abstract function renderOne(array $data);
|
||||
abstract protected function renderOne(array $data);
|
||||
|
||||
/**
|
||||
* Format a set of resource sections.
|
||||
@ -67,7 +67,7 @@ abstract class AbstractFormatter implements FormatterInterface
|
||||
* @param array $collection
|
||||
* @return string|array
|
||||
*/
|
||||
protected abstract function render(array $collection);
|
||||
abstract protected function render(array $collection);
|
||||
|
||||
/**
|
||||
* @param ApiDoc $apiDoc
|
||||
|
@ -22,7 +22,7 @@ interface FormatterInterface
|
||||
* @param array $collection
|
||||
* @return string|array
|
||||
*/
|
||||
function format(array $collection);
|
||||
public function format(array $collection);
|
||||
|
||||
/**
|
||||
* Format documentation data for one route.
|
||||
@ -31,5 +31,5 @@ interface FormatterInterface
|
||||
* @param Route $route
|
||||
* return string|array
|
||||
*/
|
||||
function formatOne(ApiDoc $apiDoc, Route $route);
|
||||
public function formatOne(ApiDoc $apiDoc, Route $route);
|
||||
}
|
||||
|
@ -11,8 +11,6 @@
|
||||
|
||||
namespace Nelmio\ApiDocBundle\Formatter;
|
||||
|
||||
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
|
||||
use Symfony\Component\Routing\Route;
|
||||
use Symfony\Component\Templating\EngineInterface;
|
||||
|
||||
class HtmlFormatter extends AbstractFormatter
|
||||
|
@ -11,9 +11,6 @@
|
||||
|
||||
namespace Nelmio\ApiDocBundle\Tests\Fixtures\Controller;
|
||||
|
||||
use Nelmio\ApiDocBundle\Annotation\ApiDoc;
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
|
||||
class TestServiceController extends TestController
|
||||
{
|
||||
}
|
||||
|
@ -31,7 +31,6 @@ while ($dir !== $lastDir) {
|
||||
}
|
||||
|
||||
use Symfony\Component\Config\Loader\LoaderInterface;
|
||||
use Symfony\Component\Filesystem\Filesystem;
|
||||
use Symfony\Component\HttpKernel\Kernel;
|
||||
|
||||
/**
|
||||
|
@ -37,14 +37,14 @@ abstract class WebTestCase extends BaseWebTestCase
|
||||
return static::$kernel->getContainer();
|
||||
}
|
||||
|
||||
static protected function getKernelClass()
|
||||
protected static function getKernelClass()
|
||||
{
|
||||
require_once __DIR__.'/Fixtures/app/AppKernel.php';
|
||||
|
||||
return 'Nelmio\ApiDocBundle\Tests\Functional\AppKernel';
|
||||
}
|
||||
|
||||
static protected function createKernel(array $options = array())
|
||||
protected static function createKernel(array $options = array())
|
||||
{
|
||||
$class = self::getKernelClass();
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<?php
|
||||
|
||||
function includeIfExists($file) {
|
||||
function includeIfExists($file)
|
||||
{
|
||||
if (file_exists($file)) {
|
||||
return include $file;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user