update RSS tools namespace

This commit is contained in:
ghost 2023-12-21 05:22:50 +02:00
parent c5559e4ca5
commit 5761f1b90b
2 changed files with 5 additions and 5 deletions

View File

@ -43,18 +43,18 @@ Currently not documented, please visit src/Client.php for details
* newPostMessage
* newRetwistMessage
### RSS
### Tools
#### RSS
Useful to create twister news bot
#### Methods
##### Feed
Read remote URL and convert response to formatted twister messages
```
$array = \Twisterarmy\Twister\Rss::feed('url');
$array = \Twisterarmy\Twister\Tools\Rss::feed('url');
```
###### Request

View File

@ -2,7 +2,7 @@
declare(strict_types=1);
namespace Twisterarmy\Twister;
namespace Twisterarmy\Twister\Tools;
class Rss
{