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
f30ef525
Commit
f30ef525
authored
Jan 01, 2016
by
MBoretto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updating chat entity
parent
8d3d8f13
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
14 deletions
+7
-14
Chat.php
src/Entities/Chat.php
+7
-14
No files found.
src/Entities/Chat.php
View file @
f30ef525
...
...
@@ -24,20 +24,17 @@ class Chat extends Entity
public
function
__construct
(
array
$data
)
{
$this
->
id
=
isset
(
$data
[
'id'
])
?
$data
[
'id'
]
:
null
;
if
(
empty
(
$this
->
id
))
{
throw
new
TelegramException
(
'id is empty!'
);
}
//$this->type = isset($data['type']) ? $data['type'] : null;
if
(
isset
(
$data
[
'type'
]))
{
$this
->
type
=
$data
[
'type'
];
}
else
{
if
(
$this
->
i
sPrivateChat
()
)
{
if
(
$this
->
i
d
>
0
)
{
$this
->
type
=
'private'
;
}
elseif
(
$this
->
i
sGroupChat
()
)
{
}
elseif
(
$this
->
i
d
<
0
)
{
$this
->
type
=
'group'
;
}
else
{
$this
->
type
=
null
;
...
...
@@ -54,36 +51,32 @@ class Chat extends Entity
{
if
(
$this
->
type
==
'group'
||
$this
->
id
<
0
)
{
return
true
;
}
else
{
return
false
;
}
return
false
;
}
public
function
isPrivateChat
()
{
if
(
$this
->
type
==
'private'
||
$this
->
id
>
0
)
{
if
(
$this
->
type
==
'private'
)
{
return
true
;
}
else
{
return
false
;
}
return
false
;
}
public
function
isSuperGroup
()
{
if
(
$this
->
type
==
'supergroup'
)
{
return
true
;
}
else
{
return
false
;
}
return
false
;
}
public
function
isChannel
()
{
if
(
$this
->
type
==
'channel'
)
{
return
true
;
}
else
{
return
false
;
}
return
false
;
}
public
function
getId
()
...
...
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