File "FunctionCommentUnitTest.inc"

Full Path: /home/warrior1/public_html/wp-content/themes/storefront/vendor/squizlabs/php_codesniffer/src/Standards/MySource/Tests/Commenting/FunctionCommentUnitTest.inc
File size: 1.29 KB
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Short content.
 *
 * @return void
 *
 * @api           read
 * @api-privilege asset.read.content
 * @api-mustlock  false
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @return void
 *
 * @api read
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @api read
 *
 * @return void
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @return void
 *
 * @api-privilege asset.read.content
 * @api           read
 * @api-mustlock  false
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @return void
 *
 * @api           read
 *
 * @api-privilege asset.read.content
 * @api-mustlock  false
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @return void
 * @api read
 */
private function functionCall() {}

/**
 * Test unknown tags.
 *
 * @return  void
 * @since   read
 * @hello   hello
 * @package Test
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @return void
 *
 * @api read
 * @api-privilege asset.read.content
 * @api-mustlock false
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @return void
 *
 * @api          read
 * @api-mustlock false
 */
private function functionCall() {}

/**
 * Short content.
 *
 * @return void
 *
 * @api read
 */
private function functionCall() {}
?>