Skip Menu |

This queue is for tickets about the Catalyst-Plugin-Authentication CPAN distribution.

Report information
The Basics
Id: 124455
Status: new
Priority: 0/
Queue: Catalyst-Plugin-Authentication

People
Owner: Nobody in particular
Requestors: KES [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: `sub can` make problems
As documented in perl: Show quoted text
>can checks if the object or class has a method called METHOD . If it does, then it returns a reference to the sub. If it does not, then it returns undef.
sub can { 1 } breaks every code which does: if( my $method = $obj->can( 'method_name' ) ) { $method->() }