Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Backend - Engine
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
296
Merge Requests
41
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Backend - Engine
Compare Revisions
fb3a5e0ab494d85c5659cbdf7ee0114fbc9d09b4...06f00b68b1f0c682f34afb36caac17cd0de5c7c5
Source
06f00b68b1f0c682f34afb36caac17cd0de5c7c5
...
Target
fb3a5e0ab494d85c5659cbdf7ee0114fbc9d09b4
Compare
Commits (2)
(chore) Remove unused includes from Boost Campaign spec
· aca7d6a4
Guy Thouret
authored
12 hours ago
aca7d6a4
(chore) Linting of recent merged changes
· 06f00b68
Guy Thouret
authored
1 minute ago
06f00b68
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
Controllers/Cli/Analytics.php
View file @
06f00b68
...
...
@@ -35,6 +35,7 @@ class Analytics extends Cli\Controller implements Interfaces\CliControllerInterf
$this
->
out
(
'Return total boost views for period with daily breakdown'
);
$this
->
out
(
'--from={timestamp} the start day for view range. Default is 10 days ago'
);
$this
->
out
(
'--to={timestamp} the end day for view range. Default is yesterday'
);
// no break
default
:
$this
->
out
(
'Syntax usage: cli analytics <type>'
);
$this
->
displayCommandHelp
();
...
...
This diff is collapsed.
Core/Boost/Network/Boost.php
View file @
06f00b68
...
...
@@ -209,7 +209,7 @@ class Boost
self
::
TYPE_NEWSFEED
];
return
in_array
(
$type
,
$validTypes
);
return
in_array
(
$type
,
$validTypes
,
true
);
}
/**
...
...
This diff is collapsed.
Spec/Core/Boost/Campaigns/CampaignSpec.php
View file @
06f00b68
...
...
@@ -4,10 +4,8 @@ namespace Spec\Minds\Core\Boost\Campaigns;
use
Minds\Core\Boost\Campaigns\Campaign
;
use
Minds\Core\Boost\Campaigns\Payments\Payment
;
use
Minds\Entities\Object
;
use
Minds\Entities\User
;
use
PhpSpec\ObjectBehavior
;
use
Prophecy\Argument
;
class
CampaignSpec
extends
ObjectBehavior
{
...
...
This diff is collapsed.