mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-03 21:00:06 +08:00
16 lines
222 B
PHP
16 lines
222 B
PHP
|
<?php
|
||
|
class Model {
|
||
|
/**
|
||
|
* getResult
|
||
|
*
|
||
|
* @return Model[]
|
||
|
*/
|
||
|
public function getResult() {
|
||
|
}
|
||
|
}
|
||
|
$someModel = new Model();
|
||
|
$results = $someModel->getResult(1);
|
||
|
|
||
|
foreach( $results as $result ) {
|
||
|
$foo = $result->
|