Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

jsarnowski / jsarnowski/brizy-pro   php

Repository URL to install this package:

Version: 2.3.7 

/ providers / context-aware.php

<?php

trait BrizyPro_Content_Providers_ContextAware {


	/**
	 * @var Brizy_Content_Context
	 */
	protected $context;

	/**
	 * @return Brizy_Content_Context
	 */
	public function getContext() {
		return $this->context;
	}

	/**
	 * @param Brizy_Content_Context $context
	 *
	 * @return BrizyPro_Content_Providers_ContextAware
	 */
	public function setContext( $context ) {
		$this->context = $context;

		return $this;
	}
}