I use PhpStorm, it shows Imagick class as available:
I get list of the available functions too.
But when I use $imagick = new \Imagick(realpath($filename));
or $imagick = new Imagick(realpath($filename));
I get "class not found error".
Does it mean the Imagick class is available?
If Imagick is available, how can I use that class?
I have imagick.php inside php.jar, that file only cointains function signatures, the functions are empty.