ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "TestFilters.php"
Full Path: /home/zcziejy/ryadselyen/src/test/TestFilters.php
File size: 525 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Dummy filter methods for testing Hookable base class
*/
class Loco_test_TestFilters extends Loco_hooks_Hookable {
/**
* Test filter returns arguments exactly as passed
* @return array
*/
public function filter_loco_test_passthru_arguments( $foo ){
return func_get_args();
}
/**
* Test filter increments passed number by +1
* @return int
*/
public function filter_loco_test_increment_by_one( $n ){
return ++$n;
}
}