mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 12:24:49 +01:00
db45ff1ba4
* add native return types * redundant phpdoc
108 lines
2.9 KiB
PHP
108 lines
2.9 KiB
PHP
<?php
|
|
namespace Psalm\Tests;
|
|
|
|
class NamespaceTest extends TestCase
|
|
{
|
|
use Traits\ValidCodeAnalysisTestTrait;
|
|
use Traits\InvalidCodeAnalysisTestTrait;
|
|
|
|
/**
|
|
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
|
|
*/
|
|
public function providerValidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'emptyNamespace' => [
|
|
'<?php
|
|
namespace A {
|
|
/** @return void */
|
|
function foo() {
|
|
|
|
}
|
|
|
|
class Bar {
|
|
|
|
}
|
|
}
|
|
namespace {
|
|
A\foo();
|
|
\A\foo();
|
|
|
|
(new A\Bar);
|
|
}',
|
|
],
|
|
'constantReference' => [
|
|
'<?php
|
|
namespace Aye\Bee {
|
|
const HELLO = "hello";
|
|
}
|
|
namespace Aye\Bee {
|
|
/** @return void */
|
|
function foo() {
|
|
echo \Aye\Bee\HELLO;
|
|
}
|
|
|
|
class Bar {
|
|
/** @return void */
|
|
public function foo() {
|
|
echo \Aye\Bee\HELLO;
|
|
}
|
|
}
|
|
}',
|
|
],
|
|
'argvReference' => [
|
|
'<?php
|
|
namespace Foo;
|
|
|
|
$a = $argv;
|
|
$b = $argc;',
|
|
],
|
|
'argvReferenceInFunction' => [
|
|
'<?php
|
|
namespace Foo;
|
|
|
|
function foo() : void {
|
|
global $argv;
|
|
|
|
$c = $argv;
|
|
}',
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return iterable<string,array{string,error_message:string,2?:string[],3?:bool,4?:string}>
|
|
*/
|
|
public function providerInvalidCodeParse(): iterable
|
|
{
|
|
return [
|
|
'callNamespacedFunctionFromEmptyNamespace' => [
|
|
'<?php
|
|
namespace A {
|
|
/** @return void */
|
|
function foo() {
|
|
|
|
}
|
|
}
|
|
namespace {
|
|
foo();
|
|
}',
|
|
'error_message' => 'UndefinedFunction',
|
|
],
|
|
'callRootFunctionFromNamespace' => [
|
|
'<?php
|
|
namespace {
|
|
/** @return void */
|
|
function foo() {
|
|
|
|
}
|
|
}
|
|
namespace A {
|
|
\A\foo();
|
|
}',
|
|
'error_message' => 'UndefinedFunction',
|
|
],
|
|
];
|
|
}
|
|
}
|