Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sccuot-nc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CIT Uni Münster
sccuot-nc
Merge requests
!1
Devel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Devel
devel
into
main
Overview
0
Commits
39
Pipelines
0
Changes
5
Merged
Dr. Marcel Wunderlich
requested to merge
devel
into
main
6 months ago
Overview
0
Commits
39
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Viewing commit
af9c834a
Prev
Next
Show latest version
5 files
+
7
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
af9c834a
Use constants for states
· af9c834a
Lidiya Gelemeev
authored
6 months ago
lib/Stats/Collector/BaseCollector.php
+
2
−
0
Options
@@ -11,6 +11,8 @@ use OCP\IDBConnection;
abstract
class
BaseCollector
implements
ICollector
{
const
RETRY_TIMES
=
3
;
const
STATE_ENABLED
=
'true'
;
const
STATE_DISABLED
=
'false'
;
public
function
collect
(
IDBConnection
$db
,
int
$timestamp
,
int
$chunkSize
,
ConfigService
$config
)
{
$data
=
null
;
Loading