Skip to content

cmyker/phpredis-phpdoc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 

Repository files navigation

You need to add the path to a class of global include path.

After that, your IDE, when you declare a class Redis will display a hint which methods of this object can be used.

For example:

$redis = new Redis();
$redis->con<press Tab or press Ctrl+Space>

Warning:

Do not forget to declare a variable type $ redis

/**
 * Please do not forget to specify the variable type
 * @var Redis
 */
public $redis = null;

Example of use

Install

  • Install redis-server

  • Install phpredis extension

  • The simpliest way to install and use redisphp-phpdoc is to use Composer, as there is a package on Packagist. Just add this to your project composer.json file :

    { "require": { "ukko/redisphp-phpdoc": "*" }, "minimum-stability": "dev" }

  • Or direct download phpredis-phpdoc

Setup in IDE PhpStorm

Menu "File" -> "Settings" -> "PHP" -> Select path to folder "phpredis-phpdoc"

Setup in IDE NetBeans

  • Right click your project -> "Properties"
  • Select the "PHP Include Path" category
  • Click "Add Folder..."
  • Select your checkout of phpredis-phpdoc
  • Click "Open"
  • Click "OK"

Setup in IDE Eclipse PDT

About

@PHPDoc extension php for IDE autocomplete

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%