Changeset 52742 for trunk/src/wp-includes/random_compat/error_polyfill.php
- Timestamp:
- 02/16/2022 09:17:04 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/random_compat/error_polyfill.php
r46586 r52742 1 1 <?php 2 2 /** 3 * Random_* Compatibility Library 3 * Random_* Compatibility Library 4 4 * for using the new PHP 7 random_* API in PHP 5 projects 5 * 5 * 6 6 * The MIT License (MIT) 7 7 * 8 * Copyright (c) 2015 - 201 7Paragon Initiative Enterprises9 * 8 * Copyright (c) 2015 - 2018 Paragon Initiative Enterprises 9 * 10 10 * Permission is hereby granted, free of charge, to any person obtaining a copy 11 11 * of this software and associated documentation files (the "Software"), to deal … … 31 31 class Error extends Exception 32 32 { 33 33 34 34 } 35 35 } … … 39 39 class TypeError extends Error 40 40 { 41 41 42 42 } 43 43 } else { 44 44 class TypeError extends Exception 45 45 { 46 46 47 47 } 48 48 }
Note: See TracChangeset
for help on using the changeset viewer.