123456789101112131415161718192021 |
- <?php
- /**
- * Collection of various useful functions
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework;
- class Util
- {
- /**
- * Return PHP version without optional suffix
- * Scheme: major.minor.release
- * @return string
- */
- public function getTrimmedPhpVersion()
- {
- return implode('.', [PHP_MAJOR_VERSION, PHP_MINOR_VERSION, PHP_RELEASE_VERSION]);
- }
- }
|