Skip to content

Instantly share code, notes, and snippets.

@davedevelopment
Created February 13, 2013 15:54
Show Gist options
  • Select an option

  • Save davedevelopment/4945586 to your computer and use it in GitHub Desktop.

Select an option

Save davedevelopment/4945586 to your computer and use it in GitHub Desktop.
__call on Route to set whatever metadata I want
<?php
public function __call($name, array $args)
{
$this->setOption('_' . $name, $args);
return $this;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment