some code cleanup and minor refactoring for php 7.2
- cleanup of docblock comments - adds @method hints for PushNotification magic __call methods to internal Handlers
Showing
.phplint.yml
0 → 100644
{ | ||
"name": "ricwein/push-notifications", | ||
"description": "Push Notifications for iOS (APNS), Android (GCM/FCM) and Windows (WNS)", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [{ | ||
"name": "Richard Weinhold", | ||
"email": "git@ricwein.com" | ||
}], | ||
"require": { | ||
"php": ">= 7.0.0", | ||
"ext-json": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"ricwein\\PushNotification\\": "src/" | ||
} | ||
"name": "ricwein/push-notifications", | ||
"description": "Push Notifications for iOS (APNS), Android (GCM/FCM) and Windows (WNS)", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Richard Weinhold", | ||
"email": "git@ricwein.com" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"ricwein\\PushNotification\\": "src/" | ||
} | ||
}, | ||
"require": { | ||
"php": ">= 7.2.0", | ||
"ext-json": "*", | ||
"ext-curl": "*" | ||
}, | ||
"require-dev": { | ||
"overtrue/phplint": "^2.0" | ||
} | ||
} |