Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
services
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tencent
services
Commits
5cecc515
Commit
5cecc515
authored
Oct 12, 2018
by
feixiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
发送消息服务优化
parent
822b0357
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
src/Notice/Extensions/Notice/MiniBackendSender.php
+1
-1
src/Notice/Extensions/Notice/MiniFrontendSender.php
+1
-1
src/Notice/Extensions/Notice/MpSender.php
+1
-1
src/Notice/Extensions/Notice/TencentSMS.php
+1
-1
No files found.
src/Notice/Extensions/Notice/MiniBackendSender.php
View file @
5cecc515
...
@@ -64,7 +64,7 @@ class MiniBackendSender implements SenderInterface
...
@@ -64,7 +64,7 @@ class MiniBackendSender implements SenderInterface
*/
*/
public
function
getData
()
public
function
getData
()
{
{
return
$this
->
data
;
return
$this
->
data
===
null
?
[]
:
$this
->
data
;
}
}
/**
/**
...
...
src/Notice/Extensions/Notice/MiniFrontendSender.php
View file @
5cecc515
...
@@ -90,7 +90,7 @@ class MiniFrontendSender implements SenderInterface
...
@@ -90,7 +90,7 @@ class MiniFrontendSender implements SenderInterface
*/
*/
public
function
getData
()
public
function
getData
()
{
{
return
$this
->
data
;
return
$this
->
data
===
null
?
[]
:
$this
->
data
;
}
}
/**
/**
...
...
src/Notice/Extensions/Notice/MpSender.php
View file @
5cecc515
...
@@ -50,7 +50,7 @@ class MpSender implements SenderInterface
...
@@ -50,7 +50,7 @@ class MpSender implements SenderInterface
public
function
getData
()
public
function
getData
()
{
{
return
$this
->
data
;
return
$this
->
data
===
null
?
[]
:
$this
->
data
;
}
}
public
function
getSendType
()
public
function
getSendType
()
...
...
src/Notice/Extensions/Notice/TencentSMS.php
View file @
5cecc515
...
@@ -42,7 +42,7 @@ class TencentSMS implements SenderInterface
...
@@ -42,7 +42,7 @@ class TencentSMS implements SenderInterface
public
function
getData
()
public
function
getData
()
{
{
$this
->
data
;
return
$this
->
data
===
null
?
[]
:
$this
->
data
;
}
}
public
function
getSendType
()
public
function
getSendType
()
...
...
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