InterfaceColumn.php 145 B

123456789101112
  1. <?php
  2. namespace common\libs\dataList\column;
  3. interface InterfaceColumn {
  4. /**
  5. * @return mixed
  6. */
  7. public function result();
  8. }