Programming Language PHP
Namespace Elabftw\Services
Class Check
Method/Function orderby
Total Examples 1
1 code examples of PHP Elabftw\Services\Check::orderby extracted from open source projects
public function testOrderby(): void
{
$this->assertEquals('date', Check::orderby('date'));
$this->expectException(ImproperActionException::class);
Check::orderby('blah');
}