We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently I want to use twig template with variables for wsdl for create it dynamically. Now I have something like this:
/** * @param string $wsdl * @param array $options * @param bool $callParent */ public function __construct( $wsdl, array $options, $callParent = false ) { if ($callParent) { return parent::__construct($wsdl, $options); } $this->options = $options; $this->wsdlPath = $wsdl; } /** * @return string */ public function getWsdlPath() { return $this->wsdlPath; } /** * @param $wsdl */ public function build($wsdl = null) { if (empty($wsdl)) { $wsdl = $this->wsdlPath; } $this->__construct( $wsdl, $this->options, $callParent = true ); }
But I want to write something beautiful 😄
The text was updated successfully, but these errors were encountered:
Sorry, my composer.json is not correct and I have old version of this, In new version loadWsdl is protected.
Sorry, something went wrong.
Can be closed, sorry again.
No branches or pull requests
Currently I want to use twig template with variables for wsdl for create it dynamically.
Now I have something like this:
But I want to write something beautiful 😄
The text was updated successfully, but these errors were encountered: