You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package provides and interface `\Astrotomic\Translatable\Contracts\Translatable` which describes the public API. It could be that the trait defines more public methods but they aren't part of the defined public API and won't force a new major release if changed or removed.
4
+
5
+
In addition to the interface we rely on the following methods which will, if changed or removed, also trigger a new major release.
6
+
7
+
## protected Interface
8
+
9
+
```php
10
+
interface TranslatableProtected
11
+
{
12
+
// detect if a given translation attribute value is empty or not
13
+
protected function isEmptyTranslatableAttribute(string $key, $value): bool;
0 commit comments