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 namespace Drupal\Core\KeyValueStore; /** * Defines the key/value store factory in..
Decoded Output download
<?php
namespace Drupal\Core\KeyValueStore;
/**
* Defines the key/value store factory interface.
*/
interface KeyValueFactoryInterface {
/**
* Constructs a new key/value store for a given collection name.
*
* @param string $collection
* The name of the collection holding key and value pairs.
*
* @return \Drupal\Core\KeyValueStore\KeyValueStoreInterface
* A key/value store implementation for the given $collection.
*/
public function get($collection);
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\KeyValueStore;
/**
* Defines the key/value store factory interface.
*/
interface KeyValueFactoryInterface {
/**
* Constructs a new key/value store for a given collection name.
*
* @param string $collection
* The name of the collection holding key and value pairs.
*
* @return \Drupal\Core\KeyValueStore\KeyValueStoreInterface
* A key/value store implementation for the given $collection.
*/
public function get($collection);
}
Function Calls
None |
Stats
MD5 | 1a7d68008fd478a9c1adc71e95bc3663 |
Eval Count | 0 |
Decode Time | 81 ms |