Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-23 03:42:22 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-07-23 03:42:22 +0300
commit2358b9c4f9c8a7f19eccc8976f39aefb53e1076b (patch)
tree9eff2289891fc246c3404605b64d7702eebbe1be /test/classes/Display
parent2bf9d2bf687093964eba3f7ac90cb514c46592e4 (diff)
Fix missing property type hints
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test/classes/Display')
-rw-r--r--test/classes/Display/ExportTest.php1
-rw-r--r--test/classes/Display/ResultsTest.php2
2 files changed, 2 insertions, 1 deletions
diff --git a/test/classes/Display/ExportTest.php b/test/classes/Display/ExportTest.php
index 0b16ef9fb3..791da5a8c9 100644
--- a/test/classes/Display/ExportTest.php
+++ b/test/classes/Display/ExportTest.php
@@ -22,6 +22,7 @@ use function htmlspecialchars;
*/
class ExportTest extends AbstractTestCase
{
+ /** @var Export */
private $export;
/**
diff --git a/test/classes/Display/ResultsTest.php b/test/classes/Display/ResultsTest.php
index b90c5ba321..da9b130b14 100644
--- a/test/classes/Display/ResultsTest.php
+++ b/test/classes/Display/ResultsTest.php
@@ -24,7 +24,7 @@ use function hex2bin;
*/
class ResultsTest extends AbstractTestCase
{
- /** @access protected */
+ /** @var DisplayResults */
protected $object;
/**