Skip to content

Commit

Permalink
Add code completion for search engines
Browse files Browse the repository at this point in the history
  • Loading branch information
natanfelles committed Feb 23, 2024
1 parent fe490c8 commit 4c15940
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .phpstorm.meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,28 @@
\Framework\Debug\ExceptionHandler::getEnvironment(),
argumentsSet('eh_env')
);
registerArgumentsSet(
'search_engines',
'ask',
'baidu',
'bing',
'duckduckgo',
'google',
'yahoo',
'yandex',
);
expectedArguments(
\Framework\Debug\ExceptionHandler::addSearchEngine(),
0,
argumentsSet('search_engines')
);
expectedArguments(
\Framework\Debug\ExceptionHandler::getSearchEngineUrl(),
0,
argumentsSet('search_engines')
);
expectedArguments(
\Framework\Debug\ExceptionHandler::setCurrentSearchEngine(),
0,
argumentsSet('search_engines')
);

0 comments on commit 4c15940

Please sign in to comment.