mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2025-08-05 05:37:49 +02:00
PSR-2 reformatting PHPDoc corrections
With minor corrections. Signed-off-by: Marcus Bointon <marcus@synchromedia.co.uk> Signed-off-by: Edward Z. Yang <ezyang@mit.edu>
This commit is contained in:
committed by
Edward Z. Yang
parent
19eee14899
commit
fac747bdbd
@@ -17,11 +17,12 @@ class HTMLPurifier_IDAccumulator
|
||||
|
||||
/**
|
||||
* Builds an IDAccumulator, also initializing the default blacklist
|
||||
* @param $config Instance of HTMLPurifier_Config
|
||||
* @param $context Instance of HTMLPurifier_Context
|
||||
* @return Fully initialized HTMLPurifier_IDAccumulator
|
||||
* @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config
|
||||
* @param HTMLPurifier_Context $context Instance of HTMLPurifier_Context
|
||||
* @return HTMLPurifier_IDAccumulator Fully initialized HTMLPurifier_IDAccumulator
|
||||
*/
|
||||
public static function build($config, $context) {
|
||||
public static function build($config, $context)
|
||||
{
|
||||
$id_accumulator = new HTMLPurifier_IDAccumulator();
|
||||
$id_accumulator->load($config->get('Attr.IDBlacklist'));
|
||||
return $id_accumulator;
|
||||
@@ -29,11 +30,14 @@ class HTMLPurifier_IDAccumulator
|
||||
|
||||
/**
|
||||
* Add an ID to the lookup table.
|
||||
* @param $id ID to be added.
|
||||
* @return Bool status, true if success, false if there's a dupe
|
||||
* @param string $id ID to be added.
|
||||
* @return bool status, true if success, false if there's a dupe
|
||||
*/
|
||||
public function add($id) {
|
||||
if (isset($this->ids[$id])) return false;
|
||||
public function add($id)
|
||||
{
|
||||
if (isset($this->ids[$id])) {
|
||||
return false;
|
||||
}
|
||||
return $this->ids[$id] = true;
|
||||
}
|
||||
|
||||
@@ -42,12 +46,12 @@ class HTMLPurifier_IDAccumulator
|
||||
* @param $array_of_ids Array of IDs to load
|
||||
* @note This function doesn't care about duplicates
|
||||
*/
|
||||
public function load($array_of_ids) {
|
||||
public function load($array_of_ids)
|
||||
{
|
||||
foreach ($array_of_ids as $id) {
|
||||
$this->ids[$id] = true;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// vim: et sw=4 sts=4
|
||||
|
Reference in New Issue
Block a user