Skip to content

Commit 707b54b

Browse files
committed
docs: added file summeries
1 parent 936daf4 commit 707b54b

5 files changed

Lines changed: 40 additions & 10 deletions

File tree

src/API.class.php

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
<?php
2-
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
3-
* file : sinusbot.class.php
4-
* version : 1.0
5-
* last modified : 06. September 2018
6-
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
7-
* author : Manuel Hettche
8-
* copyright : (C) 2018 SinusBot
9-
* email : info@ts3index.com
10-
* begin : 25. Juli 2015 *
11-
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2+
/**
3+
* Class API | src/API.class.php
4+
*
5+
* Main class which will be used to connect to the SinusBot
6+
*
7+
* @package SinusBot
8+
* @author Max Schmitt <max@schmitt.mx>
9+
*/
1210

1311
namespace SinusBot;
1412

src/Instance.class.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php
2+
/**
3+
* Class Instance | src/Instance.class.php
4+
*
5+
* A single Instance with his available actions
6+
*
7+
* @package SinusBot
8+
* @author Max Schmitt <max@schmitt.mx>
9+
*/
210

311
namespace SinusBot;
412

src/Playlist.class.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php
2+
/**
3+
* Class Playlist | src/Playlist.class.php
4+
*
5+
* A single Playlist with his available actions
6+
*
7+
* @package SinusBot
8+
* @author Max Schmitt <max@schmitt.mx>
9+
*/
210

311
namespace SinusBot;
412

src/RestClient.class.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php
2+
/**
3+
* Class RestClient | src/RestClient.class.php
4+
*
5+
* RestClient is used to perform the http requests
6+
*
7+
* @package SinusBot
8+
* @author Max Schmitt <max@schmitt.mx>
9+
*/
210

311
namespace SinusBot;
412

src/autoload.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
<?php
2+
/**
3+
* Entrypoint Autoload | src/autoload.php
4+
*
5+
* Autoloader to use the SinusBot PHP Library
6+
*
7+
* @package SinusBot
8+
* @author Max Schmitt <max@schmitt.mx>
9+
*/
210

311
include_once("RestClient.class.php");
412
include_once("Instance.class.php");

0 commit comments

Comments
 (0)