1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-05 05:37:39 +02:00
This commit is contained in:
David Grudl
2009-03-19 12:18:16 +00:00
parent aa05a85dfb
commit 496c224be5
13 changed files with 15 additions and 15 deletions

View File

@@ -224,7 +224,7 @@ abstract class DibiObject
$class = get_class($this);
if ($name === '') {
throw new /*\*/MemberAccessException("Cannot read an class '$class' property without name.");
throw new /*\*/MemberAccessException("Cannot read a class '$class' property without name.");
}
// property getter support
@@ -262,7 +262,7 @@ abstract class DibiObject
$class = get_class($this);
if ($name === '') {
throw new /*\*/MemberAccessException("Cannot assign to an class '$class' property without name.");
throw new /*\*/MemberAccessException("Cannot assign to a class '$class' property without name.");
}
// property setter support
@@ -307,7 +307,7 @@ abstract class DibiObject
public function __unset($name)
{
$class = get_class($this);
throw new /*\*/MemberAccessException("Cannot unset an property $class::\$$name.");
throw new /*\*/MemberAccessException("Cannot unset the property $class::\$$name.");
}