Files
archived-php-langspec/tests/classes/MathLibrary.inc
2018-09-21 02:44:25 +02:00

20 lines
468 B
PHP

<?php
/*
+-------------------------------------------------------------+
| Copyright (c) 2014 Facebook, Inc. (http://www.facebook.com) |
+-------------------------------------------------------------+
*/
error_reporting(-1);
final class MathLibrary
{
private function __construct() {} // disallows instantiation
public static function sin() { /* ... */ }
public static function cos() { /* ... */ }
public static function tan() { /* ... */ }
// ...
}