| 1: | <?php |
| 2: | /* |
| 3: | You may not change or alter any portion of this comment or credits |
| 4: | of supporting developers from this source code or any supporting source code |
| 5: | which is considered copyrighted (c) material of the original comment or credit authors. |
| 6: | |
| 7: | This program is distributed in the hope that it will be useful, |
| 8: | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9: | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 10: | */ |
| 11: | |
| 12: | namespace Xmf; |
| 13: | |
| 14: | use Webmozart\Assert\Assert as BaseAssertion; |
| 15: | |
| 16: | /** |
| 17: | * Assertions to validate input or output |
| 18: | * |
| 19: | * @category Xmf\Assert |
| 20: | * @package Xmf |
| 21: | * @author Richard Griffith <richard@geekwright.com> |
| 22: | * @copyright 2017 XOOPS Project (https://xoops.org) |
| 23: | * @license GNU GPL 2.0 or later (https://www.gnu.org/licenses/gpl-2.0.html) |
| 24: | * @link https://xoops.org |
| 25: | */ |
| 26: | class Assert extends BaseAssertion |
| 27: | { |
| 28: | |
| 29: | } |
| 30: |