mirror of
https://github.com/php/php-langspec.git
synced 2026-03-24 15:22:08 +01:00
20 lines
468 B
PHP
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() { /* ... */ }
|
|
// ...
|
|
}
|