Ignore:
Timestamp:
Aug 8, 2019 10:01:13 PM (5 years ago)
Author:
anonymous
Message:

Change usage of is_a($x, 'X') to $x instance of X

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/templates/lock.ihtml

    r592 r695  
    11<?php
    2 if (!is_a($lock, 'Lock')) {
     2if (!($lock instanceof \Lock)) {
    33    // If the Lock object hasn't been instantiated, don't execute this template.
    44    return null;
Note: See TracChangeset for help on using the changeset viewer.