Upgrade PHP - Backward Incompatible changes

A

Anonymous

Guest
You could always run the code from command line

php -l filename.php

and it will report any incompatibilities.
 
That should do the trick..


results will look like this..

Code:
No syntax errors detected in ./wiki/tests/selenium/SeleniumTestListener.php
No syntax errors detected in ./wiki/tests/selenium/SeleniumTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiHelpFieldHintTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiInstallationConfig.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiErrorsNamepageTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiInstallationCommonFunction.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiRightFrameworkLinksTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiButtonsAvailabilityTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiErrorsConnectToDatabasePageTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiInstallationVariables.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiRestartInstallationTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiDifferntDatabasePrefixTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiInstallerTestSuite.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiMySQLDataBaseTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiMySQLiteDataBaseTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiOnAlreadyInstalledTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiInstallationMessage.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiDifferentDatabaseAccountTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiUserInterfaceTestCase.php
No syntax errors detected in ./wiki/tests/selenium/installer/MediaWikiUpgradeExistingDatabaseTestCase.php
No syntax errors detected in ./wiki/tests/selenium/SeleniumServerManager.php
No syntax errors detected in ./wiki/tests/selenium/SeleniumTestConsoleLogger.php
No syntax errors detected in ./wiki/tests/selenium/SeleniumTestHTMLLogger.php
No syntax errors detected in ./wiki/tests/selenium/Selenium.php
No syntax errors detected in ./wiki/tests/selenium/SeleniumLoader.php
No syntax errors detected in ./wiki/tests/selenium/SeleniumTestConstants.php
No syntax errors detected in ./wiki/tests/selenium/suites/SimpleSeleniumTestSuite.php
 
Back
Top