PHP code example of prune-mazui / zephir-ide-helper
1. Go to this page and download the library: Download prune-mazui/zephir-ide-helper library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
prune-mazui / zephir-ide-helper example snippets
namespace PruneMazui\ZephirSample
{
/**
* Sample class Greeting
*/
class Greeting
{
protected $message;
public function setMessage($message)
{}
public function __toString()
{}
/**
* constructor
*
* @param string optional message
*/
public function __construct(string $message = null)
{}
/**
* Output Message to stdout
*/
public function say()
{}
}
}