Skip to content
/ Access Public
forked from PetrP/Access

Tool for access to private and protected members of object.

Notifications You must be signed in to change notification settings

Clevis/Access

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Access

Tool for access to private and protected members of object. It's handy for unit tests.

Property

class Foo
{
	private $foo;
}

$a = Access(new Foo, '$foo');

$a->set(3);
assert(3, $a->get());

Method

class Foo
{
	private function foo()
	{
		return 4;
	}
}

$a = Access(new Foo, 'foo');

assert(4, $a->call());

Whole class

class Foo
{
	private $foo;

	private function bar($plus)
	{
		return $this->foo + $plus;
	}
}

$a = Access(new Foo);

$a->foo = 10;
assert(10, $a->foo);
assert(11, $a->bar(1));

Requirements

Library has no external dependencies.

Fully works with PHP >= 5.3.2. PHP >= 5.2.0 is supported partially (see below).

AccessMethod require PHP 5.3.2 or later. AccessProperty require PHP 5.3.0 or later.

PHP >= 5.2.0 AND < 5.3.2 not supported:

  • Final classes.
  • Private methods.
  • Read private static property.
  • Write private property.

Instalations

GitHub

Each version is tagged and available on download page.

require_once __DIR__ . '/libs/Access/Init.php';

Composer & Packagist

Access is available on Packagist, where you can get it via Composer.

Author

Petr Procházka http://petrp.cz [email protected]

License

"New" BSD License

Copyright (c) Petr Procházka
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
		* Redistributions of source code must retain the above copyright
			notice, this list of conditions and the following disclaimer.
		* Redistributions in binary form must reproduce the above copyright
			notice, this list of conditions and the following disclaimer in the
			documentation and/or other materials provided with the distribution.
		* Neither the name of the <organization> nor the
			names of its contributors may be used to endorse or promote products
			derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

Tool for access to private and protected members of object.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 89.8%
  • JavaScript 9.3%
  • CSS 0.9%