Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nineyang committed Sep 4, 2017
1 parent 11278fd commit 0d67422
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.idea
.idea
/vendor/
9 changes: 7 additions & 2 deletions Dump.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@
*/
class Dump
{
public function parse()
protected function parse()
{

}

public function dispatch()
protected function dispatch()
{

}

static public function dump($value)
{
var_dump($value);
}
}
10 changes: 10 additions & 0 deletions test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php
/**
* User: Nine
* Date: 2017/9/4
* Time: 下午9:35
*/

require_once 'Dump.php';

\dd\Dump::dump('aaa');

0 comments on commit 0d67422

Please sign in to comment.