Skip to content

Instantly share code, notes, and snippets.

@hannesvdvreken
Created August 21, 2015 12:32
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 hannesvdvreken/38777e1691267faae3fa to your computer and use it in GitHub Desktop.
Save hannesvdvreken/38777e1691267faae3fa to your computer and use it in GitHub Desktop.
Return types
<?php
class Importer
{
/**
* @return $this
*/
public function setBaseUrl($url)
{
$this->baseUrl = $url;
return $this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment