Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
1answer
5k views

How can I catch a “catchable fatal error” on PHP type hinting?

I am trying to implement Type Hinting of PHP5 on one of my class, class ClassA { public function method_a (ClassB $b) {} } class ClassB {} class ClassWrong{} Correct usage: $a = new ...
11
votes
6answers
2k views

Really PHP? “Argument 1 passed to my_function() must be an instance of string, string given”

function phpwtf(string $s) { echo "$s\n"; } phpwtf("Type hinting is da bomb"); Catchable fatal error: Argument 1 passed to phpwtf() must be an instance of string, string given It's more ...
9
votes
2answers
611 views

Using type hints in Clojure for Java return values

I'm working on some Java / Clojure interoperability and came across a reflection warning for the following code: (defn load-image [resource-name] (javax.imageio.ImageIO/read (.getResource ...
8
votes
3answers
384 views

How can I type hint an array?

I have the following record: (defrecord Signal [samples ^double sample-rate ^double scaling-factor]) How can I specify samples to be a double array? I am using clojure 1.2.0 Edit: @dreish I get ...
7
votes
1answer
144 views

How to achieve a recursive deftype

I'm curious as to how to do a Clojure deftype that contains a reference to itself, e.g. (deftype BinaryTree [^BinaryTree left ^BinaryTree right]) This doesn't work... however I see no intrinsic ...
7
votes
3answers
730 views

Iterable objects and array type hinting?

I have a lot of functions that either have type hinting for arrays or use is_array() to check the array-ness of a variable. Now I'm starting to use objects that are iterable. They implement Iterator ...
6
votes
3answers
392 views

Is type hinting helping the performance of PHP scripts?

Type hinting helps the compiler to assume the type of the variable, but, as the PHP is a dynamic scripting interpreted language, the question came to my mind if it's possible that type hinting even ...
6
votes
2answers
438 views

Type hinting not enforced in defrecord constructors

I created a type using defrecord with type hints for the fields. However, I found that these type hints are not enforced in the constructors and I am able to do some strange things with them. Look at ...
6
votes
1answer
1k views

Type hinting for functions in Clojure

I'm trying to resolve a reflection warning in Clojure that seems to result from the lack of type inference on function return values that are normal Java objects. Trivial example code that ...
5
votes
2answers
158 views

How to code autocompletion in python?

I'd like to code autocompletion in Linux terminal. The code should work as follows. It has a list of strings (e.g. "hello, "hi", "how are you", "goodbye", "great", ...). In terminal the user will ...
5
votes
1answer
476 views

JetBrains WebIDE: PHP variable type hinting?

Is there a way to hint WebIDE that a variable has some type? I have to iterate an array of objects, and there's no auto-completion available. This helps in ZendStudio: /* @var ClassName $object */ ...
4
votes
2answers
74 views

Type Hinting: Default Parameters

Type Hinting PHP 5 introduces Type Hinting. Functions are now able to force parameters to be objects (by specifying the name of the class in the function prototype) or arrays (since PHP 5.1). ...
4
votes
1answer
1k views

How can I get intellisense in PHP/Eclipse on custom objects pulled out of array in foreach loop?

I have a collection of custom objects (Podcast) in an array. When I use a foreach loop to iterate through this collection, I don't have code completion on the variable that contains the object pulled ...
3
votes
2answers
96 views

type hinting and the reason(s) behind their limitations

Are object and array really the only types allowed for type hinting? Plus, they state in documentation that standard types string and int cannot be type hinted also. And that makes me more curious. ...
3
votes
2answers
189 views

Can you hint an array's items type?

This question is linked to this one : Is it possible to hint the type of the items inside a returned array ? e.g. : /** * MyFunction does a lot of things * * @param TClass1 $var1 * @param ...
3
votes
1answer
134 views

Clojure - How to check if type hints in protocols are correct?

How to check if I the type hints I have put to my code are correct? It seems like even if I put wrong type hints it works without any warnings: => (defprotocol Qqq (^Qwerty qqq [this ^String q])) ...
3
votes
2answers
182 views

Clojure type hint for Map.Entry

What is the syntax for a type hint for java.util.Map.Entry, a nested static inner class, in Clojure 1.2? I tried both ^Map/Entry and ^Map.Entry, and neither will compile.
3
votes
3answers
108 views

typehinting: method should accept any $arg that is an object

I have a class 'Collection', which has an add method. The add method should only accept objects. So this is the desired behaviour: $x=5;//arbitrary non-object $obj=new Foo; //arbitrary object ...
3
votes
4answers
314 views

Error when passing string into method with type hinting

In the code below I call a function (it happens to be a constructor) in which I have type hinting. When I run the code I get the following error: Catchable fatal error: Argument 1 passed to ...
3
votes
3answers
2k views

Type hinting in Python

I'm studying Python after a lot of PHP experience and it would be handy to have type-hinting in Python. Looks like eclipse + pydev doesn't support this. Any suggestions? For example, I want my IDE ...
3
votes
4answers
541 views

Strong data typing bug in PHP 5.3?

Is it normal to get the error "Default value for parameters with a class type hint can only be NULL" for a method in an interface defined as public function nullify(bool $force=FALSE); ? I need ...
2
votes
2answers
79 views

Clojure defmacro loses metadata

I am trying to create a little Clojure macro that defs a String with a type hint: (defmacro def-string [name value] `(def ^String ~name ~value)) (def-string db-host-option "db-host") When I ...
2
votes
1answer
84 views

Why Does PHP's Type Hinting Think My Class is a String?

I'm working on a PHP class that I wrote. Its setColour() method typehints for an instance of another class of mine, Colour. I'm doing this: $colour = new Colour($updates->colour); echo ...
2
votes
2answers
99 views

Type hinting return value with ^ or :tag meta?

The two seem to be doing the same thing in Clojure. Which syntax is canonical? (defn a ^int [] 4) (defn b ^{:tag int} [] 4) I hope it's a since it's shorter.
2
votes
2answers
50 views

How to make sure object method returns expected object?

I am trying to use DI to put one object into another. This is easy using an interface and type hinting. The problem is that the object I am injecting returns another object with one of the expected ...
2
votes
2answers
97 views

Way to verify if variable is a valid GD image resource?

I have a class that accepts a GD image resource as one of its arguments. As far as I know, there is no way to type hint this since it is a resource and not an object. Is there a way to validate ...
2
votes
1answer
175 views

PHP interface implementation rejects subclasses on parameters

consider this: class A{} class B extends A{} interface I{ // expects object instanceof A function doSomething(A $a); } class C implements I { // fails ???? function doSomething(B $b){} } In ...
2
votes
2answers
250 views

Why is “traditional” type-hinting not allowed in PHP?

Just discovered that type-hinting is allowed in PHP, but not for ints, strings, bools, or floats. Why do you suppose that is?
2
votes
3answers
4k views

Can you hint return types in PHP 5.2.5?

I think my eclipse's ctrl+clicking links might benefit greatly... Edit: I'm using eclipse PDT. Edit 2: I'm very happy with the solution of putting docblocks before functions (and variables) with an ...
1
vote
2answers
233 views

Clojure warn-on-reflection and type hints

In the following code, I am getting a warning on reflection: (ns com.example (:import [org.apache.commons.cli CommandLine Option Options PosixParser])) (def *help-option* "help") (def ...
1
vote
4answers
140 views

Is it bad practice to type hint returned value on a function that must return true or false

Quick question: For those who don't know CakePHP Model->count(); always returns an integer. If I have a function to validate if a table is empty (returns true or false) would it be a bad idea to do ...
1
vote
4answers
132 views

Is it possible to specify more than one type hint for a parameter?

Is there a way to add more than one type hinting to a method? For example, foo(param) must receive a instance of string OR bar OR baz. Thank you.
0
votes
0answers
59 views

PHP string type-hinting [closed]

Why does PHP only support type hinting for arrays and objects? I want to use a type hint like the following: protected function addServiceToken(string $token) { if(!array_key_exists($token, ...
0
votes
2answers
40 views

Is there an OOP language with optional type hinting?

Basically I'm looking for something similar to PHP, OOP, and with type hinting for all data types (in PHP you can't type-hint integers, strings, floats, nor bools, and they are not classes). Any ...
0
votes
4answers
53 views

Type hinting for any object

I've been working on code that's intended to be used with objects, without really caring what the kidn of object is. I wanted to type hint that the method being written expected an object of any ...
0
votes
1answer
101 views

Adding a type hint to a Clojure gen-class state access

I am writing a Clojure class using gen-class. I have a "state" field that I am trying to access in the following code: (ns com.example.sparetime.DateButton (:gen-class :extends ...
0
votes
1answer
144 views

Variadic functions and type-hinting in PHP

Quick one: Is there any way to enforce types for variadic functions in PHP? I'm assuming not, however maybe I've missed something. As of now, I'm just forcing a single required argument of the ...
0
votes
4answers
316 views

PHP type-hinting to primitive values?

I'd like to know whether one can type-hint a method to expect primitive types? Something like this: public function someMethod(string $str) or private function anotherMethod(int $num) the same ...
0
votes
1answer
47 views

strategy for autocompletion of skeleton code

Consider this use case scenario: I wish to auto complete and provide the skeleton for code constructs like for loop and if else statements. How can I go about doing it? the user writes this line in ...
0
votes
2answers
222 views

Type Hinting For Multiple Unrelated Interfaces

Is there a way in php to type hint for two different, unrelated interfaces? For example: interface errorable { function error($msg); } interface recordable { ssh_for_recorder(); } class ...
0
votes
3answers
446 views

How to create hints in the textview edit box that go away when textview has focus?

How do I do this? For example, when I create a question on stackoverflow, the Title text field has this in the edit TextView box: what's your programming question? be specific. As soon as you ...
0
votes
2answers
165 views

How to disable hints in Dev C++?

I have Bloodshed Dev C++ 4.9.9.2. Every time I stop typing for a second this hint pops up and I can't see a thing what I'm typing! I have a feeling that it waits for a most unsuitable moment to pop ...
0
votes
0answers
373 views

Netbeans Intellisense PHP Iterator Interface

I'm using Netbeans 6.9 and writing a PHP class that implements the Iterator interface. I would like to have the IDE offer Intellisense as I iterate over the items in my object. It seems to work for ...