Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
557 B

<?php
namespace yiiunit\data\helpers;
/**
* CustomDebugInfo serves for the testing of `__debugInfo()` PHP magic method.
*
* @see yiiunit\framework\helpers\VarDumperTest
*/
class CustomDebugInfo
{
public $volume;
public $unitPrice;
/**
* @see http://php.net/manual/en/language.oop5.magic.php#language.oop5.magic.debuginfo
*
* @return array
*/
public function __debugInfo()
{
return [
'volume' => $this->volume,
'totalPrice' => $this->volume * $this->unitPrice,
];
}
}