Skip to content

Instantly share code, notes, and snippets.

@ronan-gloo
Created December 20, 2013 15:36
Show Gist options
  • Save ronan-gloo/8056455 to your computer and use it in GitHub Desktop.
Save ronan-gloo/8056455 to your computer and use it in GitHub Desktop.
<?php
class SoapClient
{
public function __call($method, $args)
{
return $this;
}
public function __get($prop)
{
return sprintf('<xml>%s:%s</xml>', __CLASS__, $prop);
}
public function __set($prop, $value)
{
return $this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment