X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;ds=sidebyside;f=includes%2Flibs%2Frdbms%2Fencasing%2FBlob.php;h=7bc3eacfe819bd460563fb6b86a969bdab29313d;hb=60e8d3e16eb04105a19e02975c5aa5eb334b49d0;hp=e2d685cbb95608ea0879475b40ec4610134f3352;hpb=e7720b8f8e09287384ddee271641d1b1721318bb;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/libs/rdbms/encasing/Blob.php b/includes/libs/rdbms/encasing/Blob.php index e2d685cbb9..7bc3eacfe8 100644 --- a/includes/libs/rdbms/encasing/Blob.php +++ b/includes/libs/rdbms/encasing/Blob.php @@ -4,17 +4,17 @@ namespace Wikimedia\Rdbms; class Blob implements IBlob { /** @var string */ - protected $mData; + protected $data; /** * @param string $data */ public function __construct( $data ) { - $this->mData = $data; + $this->data = $data; } public function fetch() { - return $this->mData; + return $this->data; } }