ongr-archive / ongr-strict-standard

[NOT MAINTAINED] Strict PHPCS standard for PSR-2 code based on Squiz standards
MIT License
13 stars 14 forks source link

Short description required for remove method #139

Open trylika opened 9 years ago

trylika commented 9 years ago

Short description is not required for Add'er, but required for Remove'er, should be consistency here

    /**
     * @param Foo $foo
     *
     * @return Object
     */
    public function addFoo($foo)
    {
        ...
    }

    /**
     * @param Foo $foo
     *
     * @return Object
     */
    public function removeFoo($foo)
    {
       ...
    }