Use php 5.3 array syntax

This commit is contained in:
Steve Boyd 2018-07-11 16:47:52 +12:00 committed by GitHub
parent 856e5fdf0b
commit 47ed2d2cd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,13 +57,13 @@ class TikaTextExtractorTest extends SapphireTest
protected function versionProvider() protected function versionProvider()
{ {
return [ return array(
['1.7.1', '1.7.1'], array('1.7.1', '1.7.1'),
['1.7', '1.7.0'], array('1.7', '1.7.0'),
['1', '1.0.0'], array('1', '1.0.0'),
[null, '0.0.0'], array(null, '0.0.0'),
['v1.5', 'v1.5.0'], array('v1.5', 'v1.5.0'),
['carrot', 'carrot.0.0'] array('carrot', 'carrot.0.0')
]; );
} }
} }