Merge pull request #14296 from mauriciofauth/strict-types

Enable strict mode in PHP files
This commit is contained in:
Maurício Meneghini Fauth 2018-05-16 05:17:39 -03:00 committed by GitHub
commit c1a54f77b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
615 changed files with 1195 additions and 159 deletions

View File

@ -7,6 +7,7 @@ phpMyAdmin - ChangeLog
- issue #13919 Remove font size feature
- issue #12373 Add Metro theme
- issue #14155 Add move columns preview SQL button
- issue #14296 Enable strict mode in PHP files
4.8.1 (not yet released)
- issue #12772 Fix case where the central columns attributes don't get filled in

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Response;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\BrowseForeigners;
use PhpMyAdmin\Relation;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Response;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Relation;
use PhpMyAdmin\Response;

View File

@ -9,6 +9,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
/**
* This is needed for cookie based authentication to encrypt password in

View File

@ -6,6 +6,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\CentralColumns;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Relation;
use PhpMyAdmin\Response;
use PhpMyAdmin\Transformations;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Designer
*/
declare(strict_types=1);
use PhpMyAdmin\Database\Designer;
use PhpMyAdmin\Database\Designer\Common;
use PhpMyAdmin\Response;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
/**
* Include required files

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Config\PageSettings;
use PhpMyAdmin\Display\Export as DisplayExport;
use PhpMyAdmin\Export;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Config\PageSettings;
use PhpMyAdmin\Display\Import;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Database\MultiTableQuery;
use PhpMyAdmin\Response;

View File

@ -11,6 +11,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Display\CreateTable;
use PhpMyAdmin\Message;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Database\Qbe;
use PhpMyAdmin\Message;
use PhpMyAdmin\Relation;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
/**
* Include required files

View File

@ -7,6 +7,7 @@
* @todo display executed query, optional?
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Database\Search;
use PhpMyAdmin\Response;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Config\PageSettings;
use PhpMyAdmin\Response;
use PhpMyAdmin\SqlQueryForm;

View File

@ -5,8 +5,10 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Response;
require_once 'libraries/common.inc.php';
if ($GLOBALS['cfg']['EnableAutocompleteForTablesAndColumns']) {

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Response;
/**

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Controllers\Database\DatabaseStructureController;
use PhpMyAdmin\Di\Container;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Display\CreateTable;
use PhpMyAdmin\Message;
use PhpMyAdmin\Relation;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
/**
* Include required files

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\ErrorReport;
use PhpMyAdmin\Message;
use PhpMyAdmin\Response;

View File

@ -8,6 +8,7 @@
* @package PhpMyAdmin
* @subpackage Example
*/
declare(strict_types=1);
$i=0;
$hosts = array (

View File

@ -15,6 +15,7 @@
* @package PhpMyAdmin
* @subpackage Example
*/
declare(strict_types=1);
if (false === @include_once 'OpenID/RelyingParty.php') {
exit;

View File

@ -10,7 +10,7 @@
* @package PhpMyAdmin
* @subpackage Example
*/
declare(strict_types=1);
/**
* This function returns username and password.

View File

@ -10,6 +10,7 @@
* @package PhpMyAdmin
* @subpackage Example
*/
declare(strict_types=1);
/* Use cookies for session */
ini_set('session.use_cookies', 'true');

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Core;
use PhpMyAdmin\Encoding;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Core;
use PhpMyAdmin\Gis\GisFactory;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Bookmark;
use PhpMyAdmin\Core;
@ -437,15 +438,15 @@ if ($memory_limit == -1) {
}
// Calculate value of the limit
$memoryUnit = mb_strtolower(substr($memory_limit, -1));
$memoryUnit = mb_strtolower(substr((string) $memory_limit, -1));
if ('m' == $memoryUnit) {
$memory_limit = (int)substr($memory_limit, 0, -1) * 1024 * 1024;
$memory_limit = (int) substr((string) $memory_limit, 0, -1) * 1024 * 1024;
} elseif ('k' == $memoryUnit) {
$memory_limit = (int)substr($memory_limit, 0, -1) * 1024;
$memory_limit = (int) substr((string) $memory_limit, 0, -1) * 1024;
} elseif ('g' == $memoryUnit) {
$memory_limit = (int)substr($memory_limit, 0, -1) * 1024 * 1024 * 1024;
$memory_limit = (int) substr((string) $memory_limit, 0, -1) * 1024 * 1024 * 1024;
} else {
$memory_limit = (int)$memory_limit;
$memory_limit = (int) $memory_limit;
}
// Just to be sure, there might be lot of memory needed for uncompression

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Core;
use PhpMyAdmin\Display\ImportAjax;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Charsets;
use PhpMyAdmin\Config;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
if (!defined('TESTSUITE')) {
chdir('..');

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
if (!defined('TESTSUITE')) {
chdir('..');

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
if (! defined('PHPMYADMIN')) {
exit;
}

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
use Psr\Container\ContainerInterface;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
use Exception;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
use Psr\Container\NotFoundExceptionInterface;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin\Di
*/
declare(strict_types=1);
namespace PhpMyAdmin\Di;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Display;
use PhpMyAdmin\Message;

View File

@ -24,6 +24,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Display;
use PhpMyAdmin\Template;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Display;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Display;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Display;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Display;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
namespace PhpMyAdmin\Display;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;
@ -331,10 +333,11 @@ class Innodb extends StorageEngine
public function getPageStatus()
{
return '<pre id="pre_innodb_status">' . "\n"
. htmlspecialchars(
$GLOBALS['dbi']->fetchValue('SHOW ENGINE INNODB STATUS;', 0, 'Status')
) . "\n"
. '</pre>' . "\n";
. htmlspecialchars((string) $GLOBALS['dbi']->fetchValue(
'SHOW ENGINE INNODB STATUS;',
0,
'Status'
)) . "\n" . '</pre>' . "\n";
}
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\Core;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Engines
*/
declare(strict_types=1);
namespace PhpMyAdmin\Engines;
use PhpMyAdmin\StorageEngine;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;
/**

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;
@ -223,7 +224,7 @@ class GisLineString extends GisGeometry
}
$row .= '"';
foreach ($line_options as $option => $val) {
$row .= ' ' . $option . '="' . trim($val) . '"';
$row .= ' ' . $option . '="' . trim((string) $val) . '"';
}
$row .= '/>';
@ -292,10 +293,10 @@ class GisLineString extends GisGeometry
$wkt = 'LINESTRING(';
for ($i = 0; $i < $no_of_points; $i++) {
$wkt .= ((isset($gis_data[$index]['LINESTRING'][$i]['x'])
&& trim($gis_data[$index]['LINESTRING'][$i]['x']) != '')
&& trim((string) $gis_data[$index]['LINESTRING'][$i]['x']) != '')
? $gis_data[$index]['LINESTRING'][$i]['x'] : $empty)
. ' ' . ((isset($gis_data[$index]['LINESTRING'][$i]['y'])
&& trim($gis_data[$index]['LINESTRING'][$i]['y']) != '')
&& trim((string) $gis_data[$index]['LINESTRING'][$i]['y']) != '')
? $gis_data[$index]['LINESTRING'][$i]['y'] : $empty) . ',';
}

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;
@ -250,7 +251,7 @@ class GisMultiLineString extends GisGeometry
$row .= '"';
$line_options['id'] = $label . rand();
foreach ($line_options as $option => $val) {
$row .= ' ' . $option . '="' . trim($val) . '"';
$row .= ' ' . $option . '="' . trim((string) $val) . '"';
}
$row .= '/>';
}

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;
@ -213,7 +214,7 @@ class GisMultiPoint extends GisGeometry
. $point[1] . '" r="3"';
$point_options['id'] = $label . rand();
foreach ($point_options as $option => $val) {
$row .= ' ' . $option . '="' . trim($val) . '"';
$row .= ' ' . $option . '="' . trim((string) $val) . '"';
}
$row .= '/>';
}

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;
@ -286,7 +287,7 @@ class GisMultiPolygon extends GisGeometry
$polygon_options['id'] = $label . rand();
$row .= '"';
foreach ($polygon_options as $option => $val) {
$row .= ' ' . $option . '="' . trim($val) . '"';
$row .= ' ' . $option . '="' . trim((string) $val) . '"';
}
$row .= '/>';
}

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;
@ -221,7 +222,7 @@ class GisPoint extends GisGeometry
$row .= '<circle cx="' . $points_arr[0][0]
. '" cy="' . $points_arr[0][1] . '" r="3"';
foreach ($point_options as $option => $val) {
$row .= ' ' . $option . '="' . trim($val) . '"';
$row .= ' ' . $option . '="' . trim((string) $val) . '"';
}
$row .= '/>';
}

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;
use TCPDF;
@ -253,7 +255,7 @@ class GisPolygon extends GisGeometry
$row .= '"';
foreach ($polygon_options as $option => $val) {
$row .= ' ' . $option . '="' . trim($val) . '"';
$row .= ' ' . $option . '="' . trim((string) $val) . '"';
}
$row .= '/>';

View File

@ -5,6 +5,7 @@
*
* @package PhpMyAdmin-GIS
*/
declare(strict_types=1);
namespace PhpMyAdmin\Gis;

View File

@ -6,6 +6,8 @@
*
* @package PhpMyAdmin-navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation;
use PhpMyAdmin\Config\PageSettings;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation;
use PhpMyAdmin\Sanitize;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation;
use PhpMyAdmin\Navigation\Nodes\Node;
@ -979,7 +981,7 @@ class NavigationTree
$retval .= $paths['aPath_clean'][2];
$retval .= "</span>";
$retval .= "<span class='hide pos2_value'>";
$retval .= htmlspecialchars($node->pos2);
$retval .= htmlspecialchars((string) $node->pos2);
$retval .= "</span>";
}
if (isset($paths['aPath_clean'][4])) {
@ -987,7 +989,7 @@ class NavigationTree
$retval .= $paths['aPath_clean'][4];
$retval .= "</span>";
$retval .= "<span class='hide pos3_value'>";
$retval .= htmlspecialchars($node->pos3);
$retval .= htmlspecialchars((string) $node->pos3);
$retval .= "</span>";
}

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation;
use PhpMyAdmin\Navigation\Nodes\Node;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\DatabaseInterface;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Relation;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Relation;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
/**

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Util;

View File

@ -5,6 +5,8 @@
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Navigation\NodeFactory;

View File

@ -6,6 +6,8 @@
* @package PhpMyAdmin-Authentication
* @subpackage Config
*/
declare(strict_types=1);
namespace PhpMyAdmin\Plugins\Auth;
use PhpMyAdmin\Plugins\AuthenticationPlugin;

Some files were not shown because too many files have changed in this diff Show More