Skip to content

Commit a77e65b

Browse files
committed
QA: Rename member to clarify purpose
1 parent de35c09 commit a77e65b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/php/com/amazon/aws/lambda/InvokeMode.class.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
abstract class InvokeMode implements Value {
88
use Comparison;
99

10-
protected $api, $name;
10+
protected $api, $identifier;
1111

1212
/** Creates a new invoke mode instance */
13-
public function __construct(RuntimeApi $api, $name) {
13+
public function __construct(RuntimeApi $api, $identifier) {
1414
$this->api= $api;
15-
$this->name= $name;
15+
$this->identifier= $identifier;
1616
}
1717

1818
/**
@@ -27,6 +27,6 @@ public abstract function invoke($lambda, $event, $context);
2727

2828
/** @return string */
2929
public function toString() {
30-
return strtr(self::class, '\\', '.').'<'.$this->name.'>';
30+
return strtr(self::class, '\\', '.').'<'.$this->identifier.'>';
3131
}
3232
}

0 commit comments

Comments
 (0)