I am the first Atom editor user for my PHP code. Atom can autocomplete PHP's built-in functions. Is it possible to make the editor autocomplete of my user function written in a separate file?
function.php
<?php
function printSomething() {
echo "Hello World";
}
index.php
<?php
require_once "function.php";
printSomething();
Thanks in advance.
source
share