Skip to content

Commit eebfc28

Browse files
authored
Merge pull request #400 from phpbb-fr-com/3.3.x-remove_automod
Remove automod/MPV
2 parents f14bbd9 + 088a50e commit eebfc28

File tree

27 files changed

+52
-7024
lines changed

27 files changed

+52
-7024
lines changed

config/services.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -303,24 +303,12 @@ services:
303303
- '%core.root_path%'
304304
- '%core.php_ext%'
305305

306-
phpbb.titania.mod.prevalidator:
307-
class: phpbb\titania\contribution\mod\prevalidator
308-
arguments:
309-
- '@phpbb.titania.config'
310-
- '@user'
311-
- '@template'
312-
- '@phpbb.titania.contribution.prevalidator_helper'
313-
- '%core.root_path%'
314-
- '%phpbb.titania.root_path%'
315-
- '%core.php_ext%'
316-
317306
phpbb.titania.mod.type:
318307
class: phpbb\titania\contribution\mod\type
319308
arguments:
320309
- '@phpbb.titania.config'
321310
- '@user'
322311
- '@auth'
323-
- '@phpbb.titania.mod.prevalidator'
324312
tags:
325313
- { name: titania.contribution.type }
326314

contribution/bbcode/type.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ class type extends base
2424
/** @var demo\demo */
2525
protected $demo;
2626

27-
const ID = 7;
28-
const NAME = 'bbcode';
29-
const URL = 'bbcode';
27+
public const ID = 7;
28+
public const NAME = 'bbcode';
29+
public const URL = 'bbcode';
3030

3131
/**
3232
* Constructor

contribution/bridge/type.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
class type extends base
1919
{
20-
const ID = 5;
21-
const NAME = 'bridge';
22-
const URL = 'bridge';
20+
public const ID = 5;
21+
public const NAME = 'bridge';
22+
public const URL = 'bridge';
2323

2424
/**
2525
* @{inheritDoc}

contribution/converter/type.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
class type extends base
1919
{
20-
const ID = 3;
21-
const NAME = 'converter';
22-
const URL = 'converter';
20+
public const ID = 3;
21+
public const NAME = 'converter';
22+
public const URL = 'converter';
2323

2424
/**
2525
* @{inheritDoc}

contribution/extension/type.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ class type extends base
2626
/** @var prevalidator */
2727
protected $prevalidator;
2828

29-
const ID = 8;
30-
const NAME = 'extension';
31-
const URL = 'extension';
29+
public const ID = 8;
30+
public const NAME = 'extension';
31+
public const URL = 'extension';
3232

3333
/**
3434
* Constructor

contribution/mod/prevalidator.php

Lines changed: 0 additions & 211 deletions
This file was deleted.

0 commit comments

Comments
 (0)