Editing1\JetBrains\BasicCompletion::basicCompletion PHP Method

basicCompletion() public method

Complete the statement using the keyboard shortcut.
public basicCompletion ( )
    public function basicCompletion()
    {
        // $this->
        // $value =
        // if (true
        // 8. Place the caret right after "say". Use basic completion and select sayGoodbye().
        //    Tab replaces the statement, enter prepends the statement.
        $this->sayHello();
        // 9. Use CamelHumps to invoke veryLongFunctionName().
        //    Type: $this->
        //    Use "vlfn" to find the correct function.
        // $this->
        // 10. Try path completion. Include the "01_Simple_Breakpoint.php" file by placing the caret inside the quotes
        //     and use he keyboard shortcut.
        require_once '';
    }