mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-31 16:15:20 +02:00
[formats] Rename variable 'data' to 'item'
This makes the intend of the variable more clear and is now coherent with all Bridges
This commit is contained in:
parent
a84016bcb6
commit
cf146523be
6 changed files with 27 additions and 28 deletions
|
@ -6,8 +6,8 @@
|
|||
class PlaintextFormat extends FormatAbstract{
|
||||
|
||||
public function stringify(){
|
||||
$datas = $this->getItems();
|
||||
return print_r($datas, true);
|
||||
$items = $this->getItems();
|
||||
return print_r($items, true);
|
||||
}
|
||||
|
||||
public function display(){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue