Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created October 8, 2015 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muskie9/c505785c4b9c194bf142 to your computer and use it in GitHub Desktop.
Save muskie9/c505785c4b9c194bf142 to your computer and use it in GitHub Desktop.
<?php
public function validate()
{
$result = parent::validate();
if($this->MyImage()->getWidth() < 100 || $this->MyImage()->getHeight() < 100) {
$result->error('Need a larger image');
}
return $result;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment