mirror of
https://github.com/yiisoft/yii2.git
synced 2026-03-11 01:38:50 +01:00
28 lines
559 B
PHP
28 lines
559 B
PHP
<?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,
|
|
];
|
|
}
|
|
}
|