Skip to content

Commit

Permalink
Fix style warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Carlos Rodríguez-del-Pino committed Jun 6, 2024
1 parent 5d44da9 commit bbb6ef2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vpl_example_CE.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,17 @@ public function __construct($vpl) {
* Cache file group used as submitted files.
* @var object
*/
protected $submitted_fgm;
protected $submittedfgm;

/**
*
* @return object file group manager for example files
*/
public function get_submitted_fgm() {
if (! isset($this->submitted_fgm)) {
$this->submitted_fgm = $this->vpl->get_required_fgm();
if (! isset($this->submittedfgm)) {
$this->submittedfgm = $this->vpl->get_required_fgm();
}
return $this->submitted_fgm;
return $this->submittedfgm;
}

/**
Expand Down

0 comments on commit bbb6ef2

Please sign in to comment.