VariableCommentUnitTest.inc in Coder 8.2
Test file.
File
coder_sniffer/Drupal/Test/Commenting/VariableCommentUnitTest.incView source
<?php
/**
* @file
* Test file.
*/
/**
* Test class with properties.
*/
class Test {
/**
* The data type declaration should not end with a dot.
*
* @var \Drupal\locale\StringStorageInterface.
*/
protected $localeStorage;
/**
* Multiple type declarations can be declared, separated by pipes.
*
* @var \Drupal\Core\Entity\EntityInterface|null
*/
protected $entity;
/**
* Test for some common misspellings.
*
* @var Boolean|stdClass|NULL|FALSE|TRUE|[]
*/
protected $someVar;
/**
* A variable name should not follow the type declaration.
*
* @var \Drupal\Core\Session\AccountProxyInterface $user
*/
protected $user;
// A doc comment should be used here.
protected $wrongCommentStyle;
// Wrong style with var keyword.
var $varStyle;
}