🏠 Root
/
home
/
artorgp
/
www
/
wp-content
/
plugins
/
wordfence
/
modules
/
login-security
/
classes
/
utility
/
Editing: measuredstring.php
<?php namespace WordfenceLS; class Utility_MeasuredString { public $string; public $length; public function __construct($string) { $this->string = $string; $this->length = strlen($string); } public function __toString() { return $this->string; } }
Save
Cancel