PHP Classes

File: vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTest.inc

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTest.inc   Download  
File: vendor/squizlabs/php_codesniffer/tests/Core/Sniffs/AbstractArraySniffTest.inc
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 912 bytes
 

Contents

Class file image Download
<?php /* testSimpleValues */ $foo = [1,2,3]; /* testSimpleKeyValues */ $foo = ['1'=>1,'2'=>2,'3'=>3]; /* testMissingKeys */ $foo = ['1'=>1,2,'3'=>3]; /* testMultiTokenKeys */ $paths = array( Init::ROOT_DIR.'/a' => 'a', Init::ROOT_DIR.'/b' => 'b', ); /* testMissingKeysCoalesceTernary */ return [ $a => static function () { return [1,2,3]; }, $b ?? $c, $d ? [$e] : [$f], ]; /* testTernaryValues */ $foo = [ '1' => $row['status'] === 'rejected' ? self::REJECTED_CODE : self::VERIFIED_CODE, '2' => in_array($row['status'], array('notverified', 'unverified'), true) ? self::STATUS_PENDING : self::STATUS_VERIFIED, '3' => strtotime($row['date']), ]; /* testHeredocValues */ $foo = array( <<<HERE HERE , <<<HERE HERE , ); /* testArrowFunctionValue */ $foo = array( 1 => '1', 2 => fn ($x) => yield 'a' => $x, 3 => '3', );