Skip to content

Commit fe92c48

Browse files
fixes bug #11
1 parent 1b97a3b commit fe92c48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Traits/Representation.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ trait Representation
2121
protected $representations = [];
2222

2323
/**
24-
* @param Rep $representation
24+
* @param Rep $rep
2525
* @return $this
2626
* @throws Exception
2727
*/
28-
public function addRepresentation(Rep $representation)
28+
public function addRepresentation(Rep $rep)
2929
{
3030
if (!$this->format) {
3131
throw new Exception('Format has not been set');
3232
}
3333

34-
$this->representations[] = $representation;
34+
$this->representations[] = $rep;
3535
return $this;
3636
}
3737

0 commit comments

Comments
 (0)