mirror of
https://github.com/Universal-Omega/PortableInfobox.git
synced 2024-11-16 20:57:19 +00:00
16 lines
240 B
PHP
16 lines
240 B
PHP
<?php
|
|
|
|
namespace Wikia\PortableInfobox\Helpers;
|
|
|
|
class PagePropsProxy {
|
|
|
|
public function get( $id, $property ) {
|
|
return \Wikia::getProps( $id, $property );
|
|
}
|
|
|
|
public function set( $id, $data ) {
|
|
\Wikia::setProps( $id, $data );
|
|
}
|
|
|
|
}
|