Skip to content
Snippets Groups Projects

Issue #3338206: Drupal Coding Standards Issues | phpcs

Closed Charchil Khandelwal requested to merge issue/vgwort-3338206:2.0.x into 2.0.x
30 files
+ 193
24
Compare changes
  • Side-by-side
  • Inline
Files
30
@@ -2,6 +2,9 @@
namespace Drupal\vgwort\Api;
/**
* Agent participant in a text.
*/
class AgencyParticipant extends Participant {
/**
@@ -12,11 +15,13 @@ class AgencyParticipant extends Participant {
private string $code;
/**
* Constructs a new AgencyParticipant.
*
* @param string $code
* The agency's abbreviation. 2-4 characters.
* @param string $involvement
* How the participant is involved. Either 'AUTHOR', 'TRANSLATOR', or
* 'PUBLISHER'
* 'PUBLISHER'.
*/
public function __construct(string $code, string $involvement) {
parent::__construct($involvement);
Loading