PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.inc

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.inc   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/PHP/NoSilencedErrorsUnitTest.inc
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: 2 days ago
Size: 336 bytes
 

Contents

Class file image Download
<?php /** * @see something */ if (@in_array($array, $needle)) { echo '@'; } $hasValue = @in_array(haystack: $array, needle: $needle); // phpcs:set Generic.PHP.NoSilencedErrors error true $fileContent = @file_get_contents('non_existent_file.txt'); // phpcs:set Generic.PHP.NoSilencedErrors error false echo @$undefinedVariable;