mediawiki-extensions-Scribunto/tests/phpunit/engines/LuaCommon/HashLibraryTest.php
Kunal Mehta f76ba3c465 Disable Squiz.Classes.ValidClassName.NotCamelCaps globally
Instead of per-file. This happens to also fix a false positive with the
PhpunitAnnotations sniff.

Change-Id: I22621c37217ed2db9d8b3591df1a1421c25fa7f6
2018-05-24 22:26:11 -07:00

13 lines
281 B
PHP

<?php
class Scribunto_LuaHashLibraryTest extends Scribunto_LuaEngineTestBase {
protected static $moduleName = 'HashLibraryTests';
protected function getTestModules() {
return parent::getTestModules() + [
'HashLibraryTests' => __DIR__ . '/HashLibraryTests.lua',
];
}
}