Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
TelegramBot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
TelegramBot
Commits
5d877029
Commit
5d877029
authored
Feb 02, 2016
by
Armando Lüscher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ad basic class DocBlocks.
parent
8ac91bbd
Changes
18
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
54 additions
and
0 deletions
+54
-0
ChannelchatcreatedCommand.php
src/Commands/ChannelchatcreatedCommand.php
+3
-0
ChoseninlineresultCommand.php
src/Commands/ChoseninlineresultCommand.php
+3
-0
DateCommand.php
src/Commands/DateCommand.php
+3
-0
DeletechatphotoCommand.php
src/Commands/DeletechatphotoCommand.php
+3
-0
EchoCommand.php
src/Commands/EchoCommand.php
+3
-0
GenericCommand.php
src/Commands/GenericCommand.php
+3
-0
GenericmessageCommand.php
src/Commands/GenericmessageCommand.php
+3
-0
GroupchatcreatedCommand.php
src/Commands/GroupchatcreatedCommand.php
+3
-0
HelpCommand.php
src/Commands/HelpCommand.php
+3
-0
InlinequeryCommand.php
src/Commands/InlinequeryCommand.php
+3
-0
LeftchatparticipantCommand.php
src/Commands/LeftchatparticipantCommand.php
+3
-0
NewchatparticipantCommand.php
src/Commands/NewchatparticipantCommand.php
+3
-0
NewchattitleCommand.php
src/Commands/NewchattitleCommand.php
+3
-0
SlapCommand.php
src/Commands/SlapCommand.php
+3
-0
StartCommand.php
src/Commands/StartCommand.php
+3
-0
SupergroupchatcreatedCommand.php
src/Commands/SupergroupchatcreatedCommand.php
+3
-0
WeatherCommand.php
src/Commands/WeatherCommand.php
+3
-0
WhoamiCommand.php
src/Commands/WhoamiCommand.php
+3
-0
No files found.
src/Commands/ChannelchatcreatedCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Channel chat created command
*/
class
ChannelchatcreatedCommand
extends
Command
{
/**
...
...
src/Commands/ChoseninlineresultCommand.php
View file @
5d877029
...
...
@@ -16,6 +16,9 @@ use Longman\TelegramBot\Entities\InlineQueryResultArticle;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Chosen inline result command
*/
class
ChoseninlineresultCommand
extends
Command
{
/**
...
...
src/Commands/DateCommand.php
View file @
5d877029
...
...
@@ -15,6 +15,9 @@ use Longman\TelegramBot\Entities\Update;
use
Longman\TelegramBot\Exception\TelegramException
;
use
Longman\TelegramBot\Request
;
/**
* User "/date" command
*/
class
DateCommand
extends
Command
{
/**
...
...
src/Commands/DeletechatphotoCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Delete chat photo command
*/
class
DeletechatphotoCommand
extends
Command
{
/**
...
...
src/Commands/EchoCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* User "/echo" command
*/
class
EchoCommand
extends
Command
{
/**
...
...
src/Commands/GenericCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Generic command
*/
class
GenericCommand
extends
Command
{
/**
...
...
src/Commands/GenericmessageCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Generic message command
*/
class
GenericmessageCommand
extends
Command
{
/**
...
...
src/Commands/GroupchatcreatedCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Group chat created command
*/
class
GroupchatcreatedCommand
extends
Command
{
/**
...
...
src/Commands/HelpCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* User "/help" command
*/
class
HelpCommand
extends
Command
{
/**
...
...
src/Commands/InlinequeryCommand.php
View file @
5d877029
...
...
@@ -16,6 +16,9 @@ use Longman\TelegramBot\Entities\InlineQueryResultArticle;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Inline query command
*/
class
InlinequeryCommand
extends
Command
{
/**
...
...
src/Commands/LeftchatparticipantCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Left chat participant command
*/
class
LeftchatparticipantCommand
extends
Command
{
/**
...
...
src/Commands/NewchatparticipantCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* New chat participant command
*/
class
NewchatparticipantCommand
extends
Command
{
/**
...
...
src/Commands/NewchattitleCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* New chat title command
*/
class
NewchattitleCommand
extends
Command
{
/**
...
...
src/Commands/SlapCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* User "/slap" command
*/
class
SlapCommand
extends
Command
{
/**
...
...
src/Commands/StartCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Start command
*/
class
StartCommand
extends
Command
{
/**
...
...
src/Commands/SupergroupchatcreatedCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* Super group chat created command
*/
class
SupergroupchatcreatedCommand
extends
Command
{
/**
...
...
src/Commands/WeatherCommand.php
View file @
5d877029
...
...
@@ -14,6 +14,9 @@ use Longman\TelegramBot\Command;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* User "/weather" command
*/
class
WeatherCommand
extends
Command
{
/**
...
...
src/Commands/WhoamiCommand.php
View file @
5d877029
...
...
@@ -17,6 +17,9 @@ use Longman\TelegramBot\Entities\File;
use
Longman\TelegramBot\Entities\Update
;
use
Longman\TelegramBot\Request
;
/**
* User "/whoami" command
*/
class
WhoamiCommand
extends
Command
{
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment