Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
TYPO3
sg_mail
Commits
31c966c0
Commit
31c966c0
authored
Sep 27, 2016
by
Torsten Oppermann
Browse files
[TASK] Missing array type in function parameter
parent
bbc9a195
Changes
1
Hide whitespace changes
Inline
Side-by-side
Classes/Service/MailTemplateService.php
View file @
31c966c0
...
...
@@ -66,7 +66,7 @@ class MailTemplateService {
/**
* @var string language
*/
private
$language
;
private
$language
=
'de'
;
/**
* @var boolean ignoreMailQueue
...
...
@@ -196,7 +196,7 @@ class MailTemplateService {
* @param array $registerArray
* @return MailTemplateService
*/
public
static
function
setRegisterArray
(
$registerArray
)
{
public
static
function
setRegisterArray
(
array
$registerArray
)
{
self
::
$registerArray
=
$registerArray
;
}
...
...
@@ -290,7 +290,7 @@ class MailTemplateService {
* @param array $content
* @return MailTemplateService
*/
public
function
setContent
(
$content
)
{
public
function
setContent
(
array
$content
)
{
$this
->
content
=
$content
;
return
$this
;
}
...
...
Write
Preview
Supports
Markdown
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