File "ClassDeclarationUnitTest.1.inc.fixed"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Tests/Classes/ClassDeclarationUnitTest.1.inc.fixed
File size: 2.09 KB
MIME-type: text/x-c++
Charset: utf-8

<?php

//  Correct declarations.
class CorrectClassDeclaration
{

}

abstract class CorrectClassDeclarationWithExtends extends correctClassDeclaration
{

}

final class CorrectClassDeclarationWithImplements implements correctClassDeclaration
{

}


// Incorrect placement of opening braces
class IncorrectBracePlacement
{
}
class IncorrectBracePlacementWithExtends extends correctClassDeclaration
{
}
class IncorrectBracePlacementWithImplements implements correctClassDeclaration
{
}

// Incorrect code placement for opening brace.
class IncorrectCodeAfterOpeningBrace
{
 echo phpinfo();

}//end class

class IncorrectClassDeclarationWithExtends extends correctClassDeclaration
{

}

class IncorrectBracePlacement
{
 }

abstract class CodeSnifferFail
    extends
        ArrayObject
    implements
        Serializable,
        Iterator,
        Countable,
        OuterIterator,
        RecursiveIterator
{
}

abstract class CodeSnifferFail
    extends
        ArrayObject
    implements
        Serializable,
        Iterator,
        Countable,
        OuterIterator,
        RecursiveIterator
{
}

namespace A
{
    class B
    {
    }
}

$util->setLogger(new class {});

var_dump(new class(10) extends SomeClass implements SomeInterface {
    private $num;

    public function __construct($num)
    {
        $this->num = $num;
    }

    use SomeTrait;
});

class IncorrectClassDeclarationWithCommentAtEnd extends correctClassDeclaration /* Comment */
{
}

class CorrectClassDeclarationWithCommentAtEnd extends correctClassDeclaration
/* Comment */
{
}

// Don't move phpcs:ignore comments.
class PHPCSIgnoreAnnotationAfterOpeningBrace
{ // phpcs:ignore Standard.Cat.Sniff -- for reasons.
}

// Moving any of the other trailing phpcs: comments is ok.
class PHPCSAnnotationAfterOpeningBrace
{
 // phpcs:disable Standard.Cat.Sniff -- for reasons.
}

if (!class_exists('ClassOpeningBraceShouldBeIndented')) {
    abstract class ClassOpeningBraceShouldBeIndented
    {
}
}

if (!class_exists('ClassOpeningBraceTooMuchIndentation')) {
    final class ClassOpeningBraceTooMuchIndentation
    {
        }
}

enum IncorrectBracePlacement
{
}