Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php final class ConduitBoolParameterType extends ConduitParameterType { protected ..
Decoded Output download
<?php
final class ConduitBoolParameterType
extends ConduitParameterType {
protected function getParameterValue(array $request, $key, $strict) {
$value = parent::getParameterValue($request, $key, $strict);
return $this->parseBoolValue($request, $key, $value, $strict);
}
protected function getParameterTypeName() {
return 'bool';
}
protected function getParameterFormatDescriptions() {
return array(
pht('A boolean.'),
);
}
protected function getParameterExamples() {
return array(
'true',
'false',
);
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class ConduitBoolParameterType
extends ConduitParameterType {
protected function getParameterValue(array $request, $key, $strict) {
$value = parent::getParameterValue($request, $key, $strict);
return $this->parseBoolValue($request, $key, $value, $strict);
}
protected function getParameterTypeName() {
return 'bool';
}
protected function getParameterFormatDescriptions() {
return array(
pht('A boolean.'),
);
}
protected function getParameterExamples() {
return array(
'true',
'false',
);
}
}
Function Calls
None |
Stats
MD5 | 88f096e9eca6586d782159299982bcf9 |
Eval Count | 0 |
Decode Time | 101 ms |