Skip to content

Commit 0da643f

Browse files
committed
Style, plus add a readme
1 parent 5982fbc commit 0da643f

10 files changed

+31
-15
lines changed

.php_cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
$header = <<<'EOF'
4-
This file is part of Tuli, a static analyzer for PHP
4+
This file is part of PHP-Types, a type reconstruction lib for PHP
55
66
@copyright 2015 Anthony Ferrara. All rights reserved
77
@license MIT See LICENSE at the root of the project for more info
@@ -45,7 +45,6 @@ return Symfony\CS\Config\Config::create()
4545
->finder(
4646
Symfony\CS\Finder\DefaultFinder::create()
4747
->in(__DIR__ . "/lib")
48-
->in(__DIR__ . "/bin")
4948
->in(__DIR__ . "/test")
5049
)
5150
;

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# PHP-Types
2+
3+
A PHP Type reconstruction library!!!

lib/PHPTypes/InternalArgInfo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Tuli, a static analyzer for PHP
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
55
*
66
* @copyright 2015 Anthony Ferrara. All rights reserved
77
* @license MIT See LICENSE at the root of the project for more info

lib/PHPTypes/State.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
<?php
22

3+
/*
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
5+
*
6+
* @copyright 2015 Anthony Ferrara. All rights reserved
7+
* @license MIT See LICENSE at the root of the project for more info
8+
*/
9+
310
namespace PHPTypes;
411

512
use PHPCfg\Block;

lib/PHPTypes/Type.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Tuli, a static analyzer for PHP
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
55
*
66
* @copyright 2015 Anthony Ferrara. All rights reserved
77
* @license MIT See LICENSE at the root of the project for more info

lib/PHPTypes/TypeInferer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Tuli, a static analyzer for PHP
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
55
*
66
* @copyright 2015 Anthony Ferrara. All rights reserved
77
* @license MIT See LICENSE at the root of the project for more info

lib/PHPTypes/TypeReconstructor.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Tuli, a static analyzer for PHP
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
55
*
66
* @copyright 2015 Anthony Ferrara. All rights reserved
77
* @license MIT See LICENSE at the root of the project for more info
@@ -16,7 +16,7 @@
1616

1717
class TypeReconstructor {
1818

19-
protected $state;
19+
protected $state;
2020

2121
public function resolve(State $state) {
2222
$this->state = $state;
@@ -283,7 +283,7 @@ protected function resolveOp_Expr_AssignRef(Operand $var, Op $op, SplObjectStora
283283
return false;
284284
}
285285

286-
protected function resolveOp_Expr_Cast_Object(Operand $var, Op $op, SplObjectStorage $resolved) {
286+
protected function resolveOp_Expr_Cast_Object(Operand $var, Op $op, SplObjectStorage $resolved) {
287287
if ($resolved->contains($op->expr)) {
288288
if ($resolved[$op->expr]->type->resolves(Type::object())) {
289289
return [$resolved[$op->expr]];

lib/PHPTypes/TypeResolver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Tuli, a static analyzer for PHP
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
55
*
66
* @copyright 2015 Anthony Ferrara. All rights reserved
77
* @license MIT See LICENSE at the root of the project for more info

test/PHPTypes/ReconstructorTest.php

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
<?php
22

3+
/*
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
5+
*
6+
* @copyright 2015 Anthony Ferrara. All rights reserved
7+
* @license MIT See LICENSE at the root of the project for more info
8+
*/
9+
310
namespace PHPTypes;
411

5-
use PhpParser;
6-
use PhpParser\ParserFactory;
7-
use PHPCfg\Traverser;
812
use PHPCfg\Parser;
9-
use PHPCfg\Visitor;
1013
use PHPCfg\Printer;
14+
use PHPCfg\Traverser;
15+
use PHPCfg\Visitor;
16+
use PhpParser;
17+
use PhpParser\ParserFactory;
1118

1219
class ReconstructorTest extends \PHPUnit_Framework_TestCase {
1320

@@ -37,7 +44,7 @@ public function provideTestParseAndDump() {
3744
$dir = __DIR__ . '/../code';
3845

3946
$iter = new \RecursiveIteratorIterator(
40-
new \RecursiveDirectoryIterator($dir),
47+
new \RecursiveDirectoryIterator($dir),
4148
\RecursiveIteratorIterator::LEAVES_ONLY
4249
);
4350

test/PHPTypes/TypeTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
* This file is part of Tuli, a static analyzer for PHP
4+
* This file is part of PHP-Types, a type reconstruction lib for PHP
55
*
66
* @copyright 2015 Anthony Ferrara. All rights reserved
77
* @license MIT See LICENSE at the root of the project for more info

0 commit comments

Comments
 (0)