mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-17 06:48:59 +08:00
Appended newlines to every PHP document that did not have a newline as the last character in the file.
13 lines
214 B
PHP
13 lines
214 B
PHP
<?php
|
|
namespace yiiunit\framework\helpers;
|
|
use \yii\helpers\VarDumper;
|
|
|
|
class VarDumperTest extends \yii\test\TestCase
|
|
{
|
|
public function testDumpObject()
|
|
{
|
|
$obj = new \StdClass();
|
|
VarDumper::dump($obj);
|
|
}
|
|
}
|