Lines Matching refs:mandatoryArgumentNames
156 $this->mandatoryArgumentNames[] = $param->getName();
883 $this->mandatoryArgumentNames[] = $param->getName();
1043 protected $mandatoryArgumentNames;
1060 return $this->mandatoryArgumentNames;
1084 if(count ($this->mandatoryArgumentNames) > 0) {
1085 for( $i = 0; $i < count( $this->mandatoryArgumentNames ); $i++) {
1086 $this->extraArgumentList .= "\$".$this->mandatoryArgumentNames[$i].", ";
1116 if(count ($this->mandatoryArgumentNames) > 0) {
1117 for( $i = 0; $i < count( $this->mandatoryArgumentNames ) - 1; $i++) {
1118 $this->shortArgumentList .= "\$".$this->mandatoryArgumentNames[$i].", ";
1141 if(count ($this->mandatoryArgumentNames) > 0) {
1142 for( $i = 0; $i < count( $this->mandatoryArgumentNames ); $i++) {
1143 $this->allowedArgumentLists[0] .= "\$".$this->mandatoryArgumentNames[$i].", ";
1183 if(count ($this->mandatoryArgumentNames) > 0) {
1184 foreach( $this->mandatoryArgumentNames as $name) {