2016-12-11 23:41:11 -05:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Tests;
|
|
|
|
|
|
|
|
use PhpParser\ParserFactory;
|
|
|
|
use PHPUnit_Framework_TestCase;
|
|
|
|
use Psalm\Checker\FileChecker;
|
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Context;
|
|
|
|
|
|
|
|
class ClassTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
2016-12-14 12:55:23 -05:00
|
|
|
/** @var \PhpParser\Parser */
|
2016-12-11 23:41:11 -05:00
|
|
|
protected static $parser;
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
/** @var \Psalm\Checker\ProjectChecker */
|
|
|
|
protected $project_checker;
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-12-11 23:41:11 -05:00
|
|
|
public static function setUpBeforeClass()
|
|
|
|
{
|
|
|
|
self::$parser = (new ParserFactory)->create(ParserFactory::PREFER_PHP7);
|
|
|
|
|
2016-12-14 12:28:38 -05:00
|
|
|
$config = new TestConfig();
|
2016-12-11 23:41:11 -05:00
|
|
|
}
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-12-11 23:41:11 -05:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
FileChecker::clearCache();
|
2017-01-02 15:31:18 -05:00
|
|
|
$this->project_checker = new \Psalm\Checker\ProjectChecker();
|
2016-12-11 23:41:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2016-12-11 23:41:11 -05:00
|
|
|
* @expectedExceptionMessage UndefinedClass
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2016-12-11 23:41:11 -05:00
|
|
|
*/
|
|
|
|
public function testUndefinedClass()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
(new Foo());
|
|
|
|
');
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2016-12-11 23:41:11 -05:00
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2016-12-11 23:41:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2016-12-11 23:41:11 -05:00
|
|
|
* @expectedExceptionMessage InvalidClass
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2016-12-11 23:41:11 -05:00
|
|
|
*/
|
|
|
|
public function testWrongCaseClass()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class Foo {}
|
2016-12-30 13:14:17 -05:00
|
|
|
(new foo());
|
2016-12-11 23:41:11 -05:00
|
|
|
');
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2016-12-11 23:41:11 -05:00
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2016-12-11 23:41:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2016-12-11 23:41:11 -05:00
|
|
|
* @expectedExceptionMessage InvalidScope
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2016-12-11 23:41:11 -05:00
|
|
|
*/
|
|
|
|
public function testInvalidThisFetch()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
echo $this;
|
|
|
|
');
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2016-12-11 23:41:11 -05:00
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2016-12-11 23:41:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2016-12-11 23:41:11 -05:00
|
|
|
* @expectedExceptionMessage InvalidScope
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2016-12-11 23:41:11 -05:00
|
|
|
*/
|
|
|
|
public function testInvalidThisAssignment()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
$this = "hello";
|
|
|
|
');
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2016-12-11 23:41:11 -05:00
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2016-12-11 23:41:11 -05:00
|
|
|
}
|
2016-12-16 22:16:29 -05:00
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2016-12-16 22:16:29 -05:00
|
|
|
* @expectedExceptionMessage UndefinedConstant
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2016-12-16 22:16:29 -05:00
|
|
|
*/
|
|
|
|
public function testUndefinedConstant()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
echo HELLO;
|
|
|
|
');
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2016-12-16 22:16:29 -05:00
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2016-12-16 22:16:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2016-12-16 22:16:29 -05:00
|
|
|
* @expectedExceptionMessage UndefinedConstant
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2016-12-16 22:16:29 -05:00
|
|
|
*/
|
|
|
|
public function testUndefinedClassConstant()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A {}
|
|
|
|
echo A::HELLO;
|
|
|
|
');
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2016-12-16 22:16:29 -05:00
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2016-12-16 22:16:29 -05:00
|
|
|
}
|
2016-12-28 22:11:50 -05:00
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2016-12-28 22:11:50 -05:00
|
|
|
public function testSingleFileInheritance()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A extends B {}
|
|
|
|
|
|
|
|
class B {
|
2016-12-30 13:09:00 -05:00
|
|
|
public function fooFoo() : void {
|
2016-12-30 15:53:35 -05:00
|
|
|
$a = new A();
|
|
|
|
$a->barBar();
|
2016-12-28 22:11:50 -05:00
|
|
|
}
|
|
|
|
|
2016-12-30 13:09:00 -05:00
|
|
|
protected function barBar() : void {
|
2016-12-28 22:11:50 -05:00
|
|
|
echo "hello";
|
|
|
|
}
|
|
|
|
}');
|
|
|
|
|
2017-01-02 15:31:18 -05:00
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2017-01-02 15:31:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2017-01-02 15:31:18 -05:00
|
|
|
* @expectedExceptionMessage InvalidParent
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2017-01-02 15:31:18 -05:00
|
|
|
*/
|
|
|
|
public function testInheritanceLoopOne()
|
|
|
|
{
|
|
|
|
$this->markTestSkipped('A bug');
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class C extends C {}
|
|
|
|
');
|
|
|
|
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2017-01-02 15:31:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2017-01-02 15:31:18 -05:00
|
|
|
* @expectedExceptionMessage InvalidParent
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2017-01-02 15:31:18 -05:00
|
|
|
*/
|
|
|
|
public function testInheritanceLoopTwo()
|
|
|
|
{
|
|
|
|
$this->markTestSkipped('A bug');
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class E extends F {}
|
|
|
|
class F extends E {}
|
|
|
|
');
|
|
|
|
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2017-01-02 15:31:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2017-01-02 15:31:18 -05:00
|
|
|
* @expectedExceptionMessage InvalidParent
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2017-01-02 15:31:18 -05:00
|
|
|
*/
|
|
|
|
public function testInheritanceLoopThree()
|
|
|
|
{
|
|
|
|
$this->markTestSkipped('A bug');
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class G extends H {}
|
|
|
|
class H extends I {}
|
|
|
|
class I extends G {}
|
|
|
|
');
|
|
|
|
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2017-01-02 15:31:18 -05:00
|
|
|
}
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-02 15:31:18 -05:00
|
|
|
public function testConstSandwich()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A { const B = 42;}
|
|
|
|
$a = A::B;
|
|
|
|
class C {}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
2016-12-28 22:11:50 -05:00
|
|
|
$context = new Context('somefile.php');
|
2017-01-07 15:09:47 -05:00
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
2016-12-28 22:11:50 -05:00
|
|
|
}
|
2017-01-07 17:24:43 -05:00
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-07 17:24:43 -05:00
|
|
|
public function testDeferredReference()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class B {
|
|
|
|
const C = A;
|
|
|
|
}
|
|
|
|
|
|
|
|
const A = 5;
|
|
|
|
|
|
|
|
$a = B::C;
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
$this->assertEquals('int', (string) $context->vars_in_scope['$a']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2017-01-07 17:24:43 -05:00
|
|
|
* @expectedExceptionMessage UndefinedConstant
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2017-01-07 17:24:43 -05:00
|
|
|
*/
|
|
|
|
public function testInvalidDeferredReference()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class B {
|
|
|
|
const C = A;
|
|
|
|
}
|
|
|
|
|
|
|
|
$b = (new B);
|
|
|
|
|
|
|
|
const A = 5;
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-07 17:24:43 -05:00
|
|
|
public function testMoreCyclicalReferences()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class B extends C {
|
|
|
|
public function d() : A {
|
|
|
|
return new A;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class C {
|
|
|
|
/** @var string */
|
|
|
|
public $p = A::class;
|
|
|
|
public static function e() : void {}
|
|
|
|
}
|
|
|
|
class A extends B {
|
|
|
|
private function f() : void {
|
|
|
|
self::e();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-08 13:53:40 -05:00
|
|
|
public function testReferenceToSubclassInMethod()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A {
|
|
|
|
public function b(B $b) : void {
|
|
|
|
|
|
|
|
}
|
2017-01-07 17:24:43 -05:00
|
|
|
|
2017-01-08 13:53:40 -05:00
|
|
|
public function c() : void {
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
public function d() : void {
|
|
|
|
$this->c();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-08 13:53:40 -05:00
|
|
|
public function testReferenceToClassInMethod()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A {
|
|
|
|
public function b(A $b) : void {
|
|
|
|
$b->b(new A());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
2017-01-13 12:03:22 -05:00
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2017-01-13 12:03:22 -05:00
|
|
|
* @expectedExceptionMessage OverriddenMethodAccess
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2017-01-13 12:03:22 -05:00
|
|
|
*/
|
|
|
|
public function testOverridePublicAccessLevelToPrivate()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A {
|
|
|
|
public function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
private function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2017-01-13 12:03:22 -05:00
|
|
|
* @expectedExceptionMessage OverriddenMethodAccess
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2017-01-13 12:03:22 -05:00
|
|
|
*/
|
|
|
|
public function testOverridePublicAccessLevelToProtected()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A {
|
|
|
|
public function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
protected function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-01-13 14:07:23 -05:00
|
|
|
* @expectedException \Psalm\Exception\CodeException
|
2017-01-13 12:03:22 -05:00
|
|
|
* @expectedExceptionMessage OverriddenMethodAccess
|
2017-01-13 14:07:23 -05:00
|
|
|
* @return void
|
2017-01-13 12:03:22 -05:00
|
|
|
*/
|
|
|
|
public function testOverrideProtectedAccessLevelToPrivate()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A {
|
|
|
|
protected function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
private function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
|
|
|
|
2017-01-13 14:07:23 -05:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
2017-01-13 12:03:22 -05:00
|
|
|
public function testOverrideProtectedAccessLevelToPublic()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
class A {
|
|
|
|
protected function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
public function fooFoo() : void {}
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
2017-01-14 19:34:10 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testReflectedParents()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
$e = rand(0, 10)
|
|
|
|
? new RuntimeException("m")
|
|
|
|
: null;
|
|
|
|
|
|
|
|
if ($e instanceof Exception) {
|
|
|
|
echo "good";
|
|
|
|
}
|
|
|
|
');
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
2017-01-16 00:49:12 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testNamespacedAliasedClassCall()
|
|
|
|
{
|
|
|
|
$stmts = self::$parser->parse('<?php
|
|
|
|
namespace Aye {
|
|
|
|
class Foo {}
|
|
|
|
}
|
|
|
|
namespace Bee {
|
|
|
|
use Aye as A;
|
|
|
|
|
|
|
|
new A\Foo();
|
|
|
|
}
|
|
|
|
');
|
|
|
|
|
|
|
|
$file_checker = new FileChecker('somefile.php', $this->project_checker, $stmts);
|
|
|
|
$context = new Context('somefile.php');
|
|
|
|
$file_checker->visitAndAnalyzeMethods($context);
|
|
|
|
}
|
2016-12-11 23:41:11 -05:00
|
|
|
}
|