Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Make files external AuthMechanism and Backend abstract
  • Loading branch information
Vincent Petry committed Nov 21, 2016
commit e33028ce0cb35b26ec586995a7b49f23d1d8e171
2 changes: 1 addition & 1 deletion lib/public/Files/External/Auth/AuthMechanism.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
*
* @since 9.2.0
*/
class AuthMechanism implements \JsonSerializable {
abstract class AuthMechanism implements \JsonSerializable {

/** Standard authentication schemes */
const SCHEME_NULL = 'null';
Expand Down
2 changes: 1 addition & 1 deletion lib/public/Files/External/Backend/Backend.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
*
* @since 9.2.0
*/
class Backend implements \JsonSerializable {
abstract class Backend implements \JsonSerializable {

use VisibilityTrait;
use FrontendDefinitionTrait;
Expand Down