mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-08-06 08:37:30 +02:00
Improve Factory variable names (#2895)
This commit is contained in:
@@ -14,10 +14,10 @@ if (isset($argv)) {
|
||||
}
|
||||
|
||||
try {
|
||||
$actionFac = new ActionFactory();
|
||||
$actionFactory = new ActionFactory();
|
||||
|
||||
if (array_key_exists('action', $params)) {
|
||||
$action = $actionFac->create($params['action']);
|
||||
$action = $actionFactory->create($params['action']);
|
||||
$action->userData = $params;
|
||||
$action->execute();
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user