BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
ably
/
ably-php
/
tests
📤 Upload
📝 New File
📁 New Folder
Close
Editing: UtilsTest.php
<?php namespace tests; use Ably\Utils\Miscellaneous; class UtilsTest extends \PHPUnit\Framework\TestCase { public function testPhpVersion() { $numericVersion = Miscellaneous::getNumeric('1.2.9-ubuntu-tef'); $this->assertEquals('1.2.9', $numericVersion); $numericVersion = Miscellaneous::getNumeric('4.6-macos-t'); $this->assertEquals('4.6', $numericVersion); $numericVersion = Miscellaneous::getNumeric('7.2.34-28+ubuntu20.04.1+deb.sury.org+1'); $this->assertEquals('7.2.34', $numericVersion); } }
Save
Cancel