https://github.com/mcmatters/fqn-checker
https://github.com/mcmatters/fqn-checker
Last synced: about 16 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/mcmatters/fqn-checker
- Owner: MCMatters
- Created: 2018-03-09T09:58:36.000Z (over 7 years ago)
- Default Branch: 2.0
- Last Pushed: 2025-02-27T13:48:08.000Z (4 months ago)
- Last Synced: 2025-06-27T17:49:07.018Z (4 days ago)
- Language: PHP
- Size: 24.4 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## PHP Fqn checker
Checks your php-code for the presence of un-imported functions and gives you information about where they are located.
### Installation
```bash
composer require mcmatters/fqn-checker
```### Usage
```php
getNotImported());
print_r($checker->getImported());
```Listing of **Wrong.php**
```php
[
'Acme' => [
'null' => [
13,
],
],
],
'functions' => [
'Acme' => [
'array_filter' => [
13,
],
],
],
][
'constants' => [],
'functions' = [
'Acme' => [
'ucfirst' => true,
],
],
]
```