Completed
Push — master ( f71d4e...c66cbf )
by
unknown
08:22 queued 01:15
created

Controller/ApiControllersSecurityTest.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace OpenOrchestra\FunctionalTests\MediaAdminBundle\Controller;
4
5
use OpenOrchestra\FunctionalTests\ApiBundle\Controller\ApiControllersSecurityTest as BaseApiControllersSecurityTest;
6
7
/**
8
 * Class ApiControllersSecurityTest
9
 *
10
 * @group media
11
 */
12
class ApiControllersSecurityTest extends BaseApiControllersSecurityTest
13
{
14
    /**
15
     * @return array
16
     */
17
    /*public function provideApiUrl()
0 ignored issues
show
Unused Code Comprehensibility introduced by
70% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
18
    {
19
        return array(
20
            array('/api/folder/folderId/delete', 'DELETE'),
21
            array('/api/media/mediaId/delete', 'DELETE'),
22
            array('/api/media/upload/folderId', 'POST'),
23
        );
24
    }*/
25
}
26