Created
August 7, 2016 05:18
-
-
Save vasiliishvakin/c40c0e2d2d16af7f9ef1d81fd34e4861 to your computer and use it in GitHub Desktop.
Get chail items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function getImages() | |
{ | |
if (null === $this->images) { | |
$command = new RelationLoadCommand(PageImageRelation::class, $this); | |
$this->images = $this->delegate($command); | |
} | |
return $this->images; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment